diff --git a/src/grammar.json b/src/grammar.json index 31a209755..ef0269117 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1972,7 +1972,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_typedef_type_specifier" + "name": "_type_specifier" } }, { @@ -2487,6 +2487,36 @@ { "type": "SYMBOL", "name": "_type_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + }, + "named": true, + "value": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "primitive_type" } ] }, @@ -3319,44 +3349,6 @@ } ] }, - "_typedef_type_specifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "struct_specifier" - }, - { - "type": "SYMBOL", - "name": "union_specifier" - }, - { - "type": "SYMBOL", - "name": "enum_specifier" - }, - { - "type": "SYMBOL", - "name": "macro_type_specifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_typedef_sized_type_specifier" - }, - "named": true, - "value": "sized_type_specifier" - }, - { - "type": "SYMBOL", - "name": "primitive_type" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" - } - ] - }, "_type_specifier": { "type": "CHOICE", "members": [ @@ -3390,30 +3382,6 @@ } ] }, - "_typedef_sized_type_specifier": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "signed" - }, - { - "type": "STRING", - "value": "unsigned" - }, - { - "type": "STRING", - "value": "long" - }, - { - "type": "STRING", - "value": "short" - } - ] - } - }, "sized_type_specifier": { "type": "SEQ", "members": [ @@ -7758,10 +7726,10 @@ "macro_type_specifier" ], [ - "_typedef_type_specifier", - "macro_type_specifier" + "sized_type_specifier" ], [ + "_type_specifier", "sized_type_specifier" ], [ diff --git a/src/node-types.json b/src/node-types.json index 33392de7a..8bd76f9dd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -269,6 +269,10 @@ "type": "pointer_declarator", "named": true }, + { + "type": "primitive_type", + "named": true + }, { "type": "type_identifier", "named": true @@ -3424,31 +3428,7 @@ "required": true, "types": [ { - "type": "enum_specifier", - "named": true - }, - { - "type": "macro_type_specifier", - "named": true - }, - { - "type": "primitive_type", - "named": true - }, - { - "type": "sized_type_specifier", - "named": true - }, - { - "type": "struct_specifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "union_specifier", + "type": "_type_specifier", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 5adbc724f..3d175bcb9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1999 +#define STATE_COUNT 1997 #define LARGE_STATE_COUNT 530 -#define SYMBOL_COUNT 302 +#define SYMBOL_COUNT 300 #define ALIAS_COUNT 3 #define TOKEN_COUNT 140 #define EXTERNAL_TOKEN_COUNT 0 @@ -79,26 +79,26 @@ enum { anon_sym___unaligned = 60, anon_sym_LBRACE = 61, anon_sym_RBRACE = 62, - anon_sym_LBRACK = 63, - anon_sym_RBRACK = 64, - anon_sym_EQ = 65, - anon_sym_static = 66, - anon_sym_auto = 67, - anon_sym_register = 68, - anon_sym_inline = 69, - anon_sym_thread_local = 70, - anon_sym_const = 71, - anon_sym_constexpr = 72, - anon_sym_volatile = 73, - anon_sym_restrict = 74, - anon_sym___restrict__ = 75, - anon_sym__Atomic = 76, - anon_sym__Noreturn = 77, - anon_sym_noreturn = 78, - anon_sym_signed = 79, - anon_sym_unsigned = 80, - anon_sym_long = 81, - anon_sym_short = 82, + anon_sym_signed = 63, + anon_sym_unsigned = 64, + anon_sym_long = 65, + anon_sym_short = 66, + anon_sym_LBRACK = 67, + anon_sym_RBRACK = 68, + anon_sym_EQ = 69, + anon_sym_static = 70, + anon_sym_auto = 71, + anon_sym_register = 72, + anon_sym_inline = 73, + anon_sym_thread_local = 74, + anon_sym_const = 75, + anon_sym_constexpr = 76, + anon_sym_volatile = 77, + anon_sym_restrict = 78, + anon_sym___restrict__ = 79, + anon_sym__Atomic = 80, + anon_sym__Noreturn = 81, + anon_sym_noreturn = 82, sym_primitive_type = 83, anon_sym_enum = 84, anon_sym_COLON = 85, @@ -220,107 +220,105 @@ enum { sym_compound_statement = 201, sym_storage_class_specifier = 202, sym_type_qualifier = 203, - sym__typedef_type_specifier = 204, - sym__type_specifier = 205, - aux_sym__typedef_sized_type_specifier = 206, - sym_sized_type_specifier = 207, - sym_enum_specifier = 208, - sym_enumerator_list = 209, - sym_struct_specifier = 210, - sym_union_specifier = 211, - sym_field_declaration_list = 212, - sym__field_declaration_list_item = 213, - sym_field_declaration = 214, - sym_bitfield_clause = 215, - sym_enumerator = 216, - sym_variadic_parameter = 217, - sym_parameter_list = 218, - sym_parameter_declaration = 219, - sym_attributed_statement = 220, - sym_labeled_statement = 221, - sym__top_level_expression_statement = 222, - sym_expression_statement = 223, - sym_if_statement = 224, - sym_else_clause = 225, - sym_switch_statement = 226, - sym_case_statement = 227, - sym_while_statement = 228, - sym_do_statement = 229, - sym_for_statement = 230, - sym_return_statement = 231, - sym_break_statement = 232, - sym_continue_statement = 233, - sym_goto_statement = 234, - sym__expression = 235, - sym__expression_not_binary = 236, - sym_comma_expression = 237, - sym_conditional_expression = 238, - sym_assignment_expression = 239, - sym_pointer_expression = 240, - sym_unary_expression = 241, - sym_binary_expression = 242, - sym_update_expression = 243, - sym_cast_expression = 244, - sym_type_descriptor = 245, - sym_sizeof_expression = 246, - sym_offsetof_expression = 247, - sym_generic_expression = 248, - sym_subscript_expression = 249, - sym_call_expression = 250, - sym_gnu_asm_expression = 251, - sym_gnu_asm_qualifier = 252, - sym_gnu_asm_output_operand_list = 253, - sym_gnu_asm_output_operand = 254, - sym_gnu_asm_input_operand_list = 255, - sym_gnu_asm_input_operand = 256, - sym_gnu_asm_clobber_list = 257, - sym_gnu_asm_goto_list = 258, - sym_argument_list = 259, - sym_field_expression = 260, - sym_compound_literal_expression = 261, - sym_parenthesized_expression = 262, - sym_initializer_list = 263, - sym_initializer_pair = 264, - sym_subscript_designator = 265, - sym_field_designator = 266, - sym_char_literal = 267, - sym_concatenated_string = 268, - sym_string_literal = 269, - sym_null = 270, - sym__empty_declaration = 271, - sym_macro_type_specifier = 272, - aux_sym_translation_unit_repeat1 = 273, - aux_sym_preproc_params_repeat1 = 274, - aux_sym_preproc_if_repeat1 = 275, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 276, - aux_sym_preproc_argument_list_repeat1 = 277, - aux_sym_declaration_repeat1 = 278, - aux_sym_type_definition_repeat1 = 279, - aux_sym_type_definition_repeat2 = 280, - aux_sym__declaration_specifiers_repeat1 = 281, - aux_sym_attribute_declaration_repeat1 = 282, - aux_sym_attributed_declarator_repeat1 = 283, - aux_sym_pointer_declarator_repeat1 = 284, - aux_sym_function_declarator_repeat1 = 285, - aux_sym_sized_type_specifier_repeat1 = 286, - aux_sym_enumerator_list_repeat1 = 287, - aux_sym_field_declaration_repeat1 = 288, - aux_sym_parameter_list_repeat1 = 289, - aux_sym_case_statement_repeat1 = 290, - aux_sym_generic_expression_repeat1 = 291, - aux_sym_gnu_asm_expression_repeat1 = 292, - aux_sym_gnu_asm_output_operand_list_repeat1 = 293, - aux_sym_gnu_asm_input_operand_list_repeat1 = 294, - aux_sym_gnu_asm_clobber_list_repeat1 = 295, - aux_sym_gnu_asm_goto_list_repeat1 = 296, - aux_sym_argument_list_repeat1 = 297, - aux_sym_initializer_list_repeat1 = 298, - aux_sym_initializer_pair_repeat1 = 299, - aux_sym_concatenated_string_repeat1 = 300, - aux_sym_string_literal_repeat1 = 301, - alias_sym_field_identifier = 302, - alias_sym_statement_identifier = 303, - alias_sym_type_identifier = 304, + sym__type_specifier = 204, + sym_sized_type_specifier = 205, + sym_enum_specifier = 206, + sym_enumerator_list = 207, + sym_struct_specifier = 208, + sym_union_specifier = 209, + sym_field_declaration_list = 210, + sym__field_declaration_list_item = 211, + sym_field_declaration = 212, + sym_bitfield_clause = 213, + sym_enumerator = 214, + sym_variadic_parameter = 215, + sym_parameter_list = 216, + sym_parameter_declaration = 217, + sym_attributed_statement = 218, + sym_labeled_statement = 219, + sym__top_level_expression_statement = 220, + sym_expression_statement = 221, + sym_if_statement = 222, + sym_else_clause = 223, + sym_switch_statement = 224, + sym_case_statement = 225, + sym_while_statement = 226, + sym_do_statement = 227, + sym_for_statement = 228, + sym_return_statement = 229, + sym_break_statement = 230, + sym_continue_statement = 231, + sym_goto_statement = 232, + sym__expression = 233, + sym__expression_not_binary = 234, + sym_comma_expression = 235, + sym_conditional_expression = 236, + sym_assignment_expression = 237, + sym_pointer_expression = 238, + sym_unary_expression = 239, + sym_binary_expression = 240, + sym_update_expression = 241, + sym_cast_expression = 242, + sym_type_descriptor = 243, + sym_sizeof_expression = 244, + sym_offsetof_expression = 245, + sym_generic_expression = 246, + sym_subscript_expression = 247, + sym_call_expression = 248, + sym_gnu_asm_expression = 249, + sym_gnu_asm_qualifier = 250, + sym_gnu_asm_output_operand_list = 251, + sym_gnu_asm_output_operand = 252, + sym_gnu_asm_input_operand_list = 253, + sym_gnu_asm_input_operand = 254, + sym_gnu_asm_clobber_list = 255, + sym_gnu_asm_goto_list = 256, + sym_argument_list = 257, + sym_field_expression = 258, + sym_compound_literal_expression = 259, + sym_parenthesized_expression = 260, + sym_initializer_list = 261, + sym_initializer_pair = 262, + sym_subscript_designator = 263, + sym_field_designator = 264, + sym_char_literal = 265, + sym_concatenated_string = 266, + sym_string_literal = 267, + sym_null = 268, + sym__empty_declaration = 269, + sym_macro_type_specifier = 270, + aux_sym_translation_unit_repeat1 = 271, + aux_sym_preproc_params_repeat1 = 272, + aux_sym_preproc_if_repeat1 = 273, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 274, + aux_sym_preproc_argument_list_repeat1 = 275, + aux_sym_declaration_repeat1 = 276, + aux_sym_type_definition_repeat1 = 277, + aux_sym_type_definition_repeat2 = 278, + aux_sym__declaration_specifiers_repeat1 = 279, + aux_sym_attribute_declaration_repeat1 = 280, + aux_sym_attributed_declarator_repeat1 = 281, + aux_sym_pointer_declarator_repeat1 = 282, + aux_sym_function_declarator_repeat1 = 283, + aux_sym_sized_type_specifier_repeat1 = 284, + aux_sym_enumerator_list_repeat1 = 285, + aux_sym_field_declaration_repeat1 = 286, + aux_sym_parameter_list_repeat1 = 287, + aux_sym_case_statement_repeat1 = 288, + aux_sym_generic_expression_repeat1 = 289, + aux_sym_gnu_asm_expression_repeat1 = 290, + aux_sym_gnu_asm_output_operand_list_repeat1 = 291, + aux_sym_gnu_asm_input_operand_list_repeat1 = 292, + aux_sym_gnu_asm_clobber_list_repeat1 = 293, + aux_sym_gnu_asm_goto_list_repeat1 = 294, + aux_sym_argument_list_repeat1 = 295, + aux_sym_initializer_list_repeat1 = 296, + aux_sym_initializer_pair_repeat1 = 297, + aux_sym_concatenated_string_repeat1 = 298, + aux_sym_string_literal_repeat1 = 299, + alias_sym_field_identifier = 300, + alias_sym_statement_identifier = 301, + alias_sym_type_identifier = 302, }; static const char * const ts_symbol_names[] = { @@ -387,6 +385,10 @@ static const char * const ts_symbol_names[] = { [anon_sym___unaligned] = "__unaligned", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_signed] = "signed", + [anon_sym_unsigned] = "unsigned", + [anon_sym_long] = "long", + [anon_sym_short] = "short", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", @@ -403,10 +405,6 @@ static const char * const ts_symbol_names[] = { [anon_sym__Atomic] = "_Atomic", [anon_sym__Noreturn] = "_Noreturn", [anon_sym_noreturn] = "noreturn", - [anon_sym_signed] = "signed", - [anon_sym_unsigned] = "unsigned", - [anon_sym_long] = "long", - [anon_sym_short] = "short", [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", @@ -528,9 +526,7 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", - [sym__typedef_type_specifier] = "_typedef_type_specifier", [sym__type_specifier] = "_type_specifier", - [aux_sym__typedef_sized_type_specifier] = "_typedef_sized_type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", @@ -695,6 +691,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym___unaligned] = anon_sym___unaligned, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_signed] = anon_sym_signed, + [anon_sym_unsigned] = anon_sym_unsigned, + [anon_sym_long] = anon_sym_long, + [anon_sym_short] = anon_sym_short, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, @@ -711,10 +711,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Atomic] = anon_sym__Atomic, [anon_sym__Noreturn] = anon_sym__Noreturn, [anon_sym_noreturn] = anon_sym_noreturn, - [anon_sym_signed] = anon_sym_signed, - [anon_sym_unsigned] = anon_sym_unsigned, - [anon_sym_long] = anon_sym_long, - [anon_sym_short] = anon_sym_short, [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, @@ -836,9 +832,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, - [sym__typedef_type_specifier] = sym__typedef_type_specifier, [sym__type_specifier] = sym__type_specifier, - [aux_sym__typedef_sized_type_specifier] = aux_sym__typedef_sized_type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, @@ -1192,6 +1186,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_signed] = { + .visible = true, + .named = false, + }, + [anon_sym_unsigned] = { + .visible = true, + .named = false, + }, + [anon_sym_long] = { + .visible = true, + .named = false, + }, + [anon_sym_short] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK] = { .visible = true, .named = false, @@ -1256,22 +1266,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_signed] = { - .visible = true, - .named = false, - }, - [anon_sym_unsigned] = { - .visible = true, - .named = false, - }, - [anon_sym_long] = { - .visible = true, - .named = false, - }, - [anon_sym_short] = { - .visible = true, - .named = false, - }, [sym_primitive_type] = { .visible = true, .named = true, @@ -1760,19 +1754,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__typedef_type_specifier] = { - .visible = false, - .named = true, - }, [sym__type_specifier] = { .visible = false, .named = true, .supertype = true, }, - [aux_sym__typedef_sized_type_specifier] = { - .visible = false, - .named = false, - }, [sym_sized_type_specifier] = { .visible = true, .named = true, @@ -2251,19 +2237,19 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 2}, - [6] = {.index = 4, .length = 1}, - [7] = {.index = 5, .length = 1}, - [8] = {.index = 6, .length = 1}, - [9] = {.index = 7, .length = 1}, - [10] = {.index = 8, .length = 2}, - [11] = {.index = 10, .length = 2}, + [5] = {.index = 4, .length = 1}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 1}, + [9] = {.index = 8, .length = 2}, + [10] = {.index = 10, .length = 2}, + [11] = {.index = 12, .length = 1}, [12] = {.index = 12, .length = 1}, - [13] = {.index = 12, .length = 1}, - [14] = {.index = 13, .length = 1}, - [15] = {.index = 5, .length = 1}, - [16] = {.index = 14, .length = 2}, - [17] = {.index = 16, .length = 2}, - [18] = {.index = 18, .length = 1}, + [13] = {.index = 13, .length = 1}, + [14] = {.index = 5, .length = 1}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 16, .length = 2}, + [17] = {.index = 18, .length = 1}, [19] = {.index = 19, .length = 2}, [20] = {.index = 21, .length = 2}, [21] = {.index = 23, .length = 1}, @@ -2697,15 +2683,15 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [5] = { - [0] = sym_sized_type_specifier, - }, - [7] = { + [6] = { [1] = alias_sym_type_identifier, }, - [13] = { + [12] = { [1] = alias_sym_type_identifier, }, + [18] = { + [0] = sym_primitive_type, + }, [20] = { [1] = alias_sym_type_identifier, }, @@ -2742,9 +2728,6 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }; static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym__typedef_sized_type_specifier, 2, - aux_sym__typedef_sized_type_specifier, - sym_sized_type_specifier, 0, }; @@ -2753,54 +2736,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 2, - [6] = 4, - [7] = 2, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 5, [8] = 2, - [9] = 4, - [10] = 4, - [11] = 4, + [9] = 2, + [10] = 5, + [11] = 5, [12] = 12, - [13] = 12, - [14] = 14, - [15] = 15, - [16] = 14, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 12, - [21] = 14, - [22] = 14, + [13] = 13, + [14] = 12, + [15] = 12, + [16] = 16, + [17] = 13, + [18] = 12, + [19] = 13, + [20] = 20, + [21] = 13, + [22] = 22, [23] = 12, - [24] = 12, + [24] = 13, [25] = 25, - [26] = 14, - [27] = 25, + [26] = 26, + [27] = 22, [28] = 28, - [29] = 28, + [29] = 29, [30] = 30, - [31] = 25, - [32] = 32, - [33] = 33, - [34] = 28, - [35] = 32, - [36] = 32, - [37] = 33, - [38] = 30, - [39] = 30, - [40] = 32, - [41] = 41, - [42] = 30, - [43] = 32, + [31] = 30, + [32] = 28, + [33] = 30, + [34] = 22, + [35] = 35, + [36] = 35, + [37] = 22, + [38] = 35, + [39] = 28, + [40] = 40, + [41] = 30, + [42] = 28, + [43] = 43, [44] = 28, - [45] = 30, - [46] = 28, - [47] = 33, - [48] = 48, - [49] = 33, - [50] = 25, - [51] = 33, + [45] = 35, + [46] = 29, + [47] = 29, + [48] = 29, + [49] = 30, + [50] = 35, + [51] = 29, [52] = 52, [53] = 53, [54] = 54, @@ -2808,31 +2791,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 58, - [60] = 57, + [59] = 56, + [60] = 54, [61] = 55, - [62] = 54, - [63] = 56, - [64] = 58, - [65] = 54, + [62] = 57, + [63] = 58, + [64] = 56, + [65] = 58, [66] = 54, - [67] = 54, - [68] = 55, - [69] = 58, - [70] = 56, - [71] = 56, - [72] = 57, - [73] = 55, + [67] = 58, + [68] = 54, + [69] = 56, + [70] = 57, + [71] = 57, + [72] = 54, + [73] = 58, [74] = 55, [75] = 56, - [76] = 58, + [76] = 55, [77] = 57, - [78] = 57, - [79] = 58, - [80] = 57, + [78] = 55, + [79] = 57, + [80] = 54, [81] = 55, - [82] = 54, - [83] = 56, + [82] = 56, + [83] = 58, [84] = 84, [85] = 84, [86] = 84, @@ -2886,13 +2869,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 134, [135] = 135, [136] = 136, - [137] = 137, + [137] = 91, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 91, + [143] = 143, [144] = 144, [145] = 145, [146] = 146, @@ -2903,376 +2886,376 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 130, - [155] = 92, - [156] = 103, - [157] = 121, - [158] = 131, + [154] = 124, + [155] = 110, + [156] = 97, + [157] = 101, + [158] = 123, [159] = 122, [160] = 122, - [161] = 129, - [162] = 99, - [163] = 128, - [164] = 93, - [165] = 100, - [166] = 105, - [167] = 101, - [168] = 124, - [169] = 102, - [170] = 104, - [171] = 123, - [172] = 94, - [173] = 95, - [174] = 125, - [175] = 96, - [176] = 97, - [177] = 105, - [178] = 126, - [179] = 98, - [180] = 120, - [181] = 106, - [182] = 119, - [183] = 107, - [184] = 108, - [185] = 109, - [186] = 110, - [187] = 118, - [188] = 111, - [189] = 112, - [190] = 113, - [191] = 117, - [192] = 114, - [193] = 115, - [194] = 116, - [195] = 127, - [196] = 144, - [197] = 91, - [198] = 136, - [199] = 141, - [200] = 147, - [201] = 140, + [161] = 125, + [162] = 130, + [163] = 129, + [164] = 131, + [165] = 93, + [166] = 120, + [167] = 126, + [168] = 98, + [169] = 121, + [170] = 95, + [171] = 94, + [172] = 99, + [173] = 104, + [174] = 120, + [175] = 127, + [176] = 128, + [177] = 100, + [178] = 119, + [179] = 102, + [180] = 103, + [181] = 118, + [182] = 105, + [183] = 106, + [184] = 107, + [185] = 108, + [186] = 109, + [187] = 96, + [188] = 117, + [189] = 111, + [190] = 92, + [191] = 112, + [192] = 116, + [193] = 113, + [194] = 114, + [195] = 115, + [196] = 151, + [197] = 142, + [198] = 146, + [199] = 149, + [200] = 145, + [201] = 136, [202] = 135, - [203] = 138, + [203] = 132, [204] = 91, - [205] = 139, - [206] = 91, - [207] = 90, - [208] = 142, - [209] = 145, - [210] = 133, - [211] = 149, - [212] = 150, - [213] = 151, - [214] = 146, - [215] = 152, - [216] = 153, - [217] = 148, - [218] = 132, - [219] = 134, - [220] = 137, - [221] = 221, - [222] = 222, - [223] = 112, - [224] = 111, - [225] = 92, - [226] = 110, - [227] = 109, - [228] = 108, - [229] = 107, - [230] = 106, + [205] = 133, + [206] = 139, + [207] = 150, + [208] = 90, + [209] = 153, + [210] = 134, + [211] = 144, + [212] = 140, + [213] = 138, + [214] = 148, + [215] = 141, + [216] = 91, + [217] = 152, + [218] = 143, + [219] = 91, + [220] = 147, + [221] = 106, + [222] = 95, + [223] = 109, + [224] = 108, + [225] = 107, + [226] = 106, + [227] = 105, + [228] = 228, + [229] = 103, + [230] = 102, [231] = 231, - [232] = 97, - [233] = 96, - [234] = 108, - [235] = 107, - [236] = 95, - [237] = 94, - [238] = 123, - [239] = 106, - [240] = 109, + [232] = 110, + [233] = 100, + [234] = 99, + [235] = 98, + [236] = 236, + [237] = 111, + [238] = 238, + [239] = 92, + [240] = 127, [241] = 241, [242] = 242, - [243] = 126, - [244] = 110, - [245] = 130, - [246] = 246, - [247] = 131, - [248] = 248, + [243] = 129, + [244] = 244, + [245] = 125, + [246] = 109, + [247] = 112, + [248] = 113, [249] = 249, - [250] = 92, - [251] = 111, - [252] = 112, - [253] = 99, - [254] = 100, - [255] = 101, - [256] = 102, - [257] = 104, - [258] = 102, + [250] = 250, + [251] = 97, + [252] = 96, + [253] = 95, + [254] = 94, + [255] = 104, + [256] = 94, + [257] = 108, + [258] = 258, [259] = 104, - [260] = 249, - [261] = 105, - [262] = 126, - [263] = 221, - [264] = 101, - [265] = 100, - [266] = 114, - [267] = 113, - [268] = 115, - [269] = 114, - [270] = 127, + [260] = 112, + [261] = 95, + [262] = 96, + [263] = 114, + [264] = 264, + [265] = 120, + [266] = 127, + [267] = 267, + [268] = 111, + [269] = 269, + [270] = 270, [271] = 271, - [272] = 125, - [273] = 124, - [274] = 93, - [275] = 116, - [276] = 122, - [277] = 121, - [278] = 99, - [279] = 117, - [280] = 118, - [281] = 115, - [282] = 119, - [283] = 120, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 116, - [288] = 117, - [289] = 98, - [290] = 290, - [291] = 98, - [292] = 97, - [293] = 103, - [294] = 96, - [295] = 118, - [296] = 103, - [297] = 129, - [298] = 128, - [299] = 119, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 222, - [304] = 304, - [305] = 120, - [306] = 306, - [307] = 121, - [308] = 122, - [309] = 302, - [310] = 306, - [311] = 127, - [312] = 231, - [313] = 313, - [314] = 222, - [315] = 93, - [316] = 124, - [317] = 125, - [318] = 304, - [319] = 290, - [320] = 286, - [321] = 127, - [322] = 306, - [323] = 126, - [324] = 241, - [325] = 242, - [326] = 246, - [327] = 105, - [328] = 248, - [329] = 313, - [330] = 231, - [331] = 271, - [332] = 284, - [333] = 285, - [334] = 104, - [335] = 300, - [336] = 95, - [337] = 94, - [338] = 302, - [339] = 222, - [340] = 304, - [341] = 306, - [342] = 123, - [343] = 102, - [344] = 101, - [345] = 304, - [346] = 290, - [347] = 286, - [348] = 241, - [349] = 242, - [350] = 246, - [351] = 248, - [352] = 249, - [353] = 221, - [354] = 271, - [355] = 100, - [356] = 99, - [357] = 98, - [358] = 284, - [359] = 285, - [360] = 125, - [361] = 124, - [362] = 103, - [363] = 300, - [364] = 131, - [365] = 93, - [366] = 301, - [367] = 222, - [368] = 302, - [369] = 302, - [370] = 222, - [371] = 304, - [372] = 306, - [373] = 131, - [374] = 313, - [375] = 130, - [376] = 129, - [377] = 313, - [378] = 121, - [379] = 128, - [380] = 123, - [381] = 94, - [382] = 290, - [383] = 286, - [384] = 95, - [385] = 241, - [386] = 96, - [387] = 242, - [388] = 246, - [389] = 248, - [390] = 249, - [391] = 221, - [392] = 231, - [393] = 271, - [394] = 284, - [395] = 285, - [396] = 97, - [397] = 300, - [398] = 290, - [399] = 301, - [400] = 286, - [401] = 302, - [402] = 113, - [403] = 304, - [404] = 306, - [405] = 301, - [406] = 106, - [407] = 107, - [408] = 313, - [409] = 108, - [410] = 109, - [411] = 290, - [412] = 286, - [413] = 241, - [414] = 242, - [415] = 313, - [416] = 130, - [417] = 241, - [418] = 242, - [419] = 110, - [420] = 246, - [421] = 248, - [422] = 249, - [423] = 221, - [424] = 271, - [425] = 284, - [426] = 285, - [427] = 300, - [428] = 246, - [429] = 248, - [430] = 301, - [431] = 231, - [432] = 301, - [433] = 249, - [434] = 128, - [435] = 92, - [436] = 120, - [437] = 300, - [438] = 119, - [439] = 118, - [440] = 117, - [441] = 116, - [442] = 285, - [443] = 284, - [444] = 115, - [445] = 271, - [446] = 114, - [447] = 111, - [448] = 113, - [449] = 221, - [450] = 112, - [451] = 129, - [452] = 145, - [453] = 141, - [454] = 144, - [455] = 148, + [272] = 228, + [273] = 228, + [274] = 128, + [275] = 97, + [276] = 115, + [277] = 126, + [278] = 124, + [279] = 93, + [280] = 92, + [281] = 122, + [282] = 116, + [283] = 121, + [284] = 117, + [285] = 267, + [286] = 101, + [287] = 118, + [288] = 288, + [289] = 288, + [290] = 113, + [291] = 114, + [292] = 115, + [293] = 123, + [294] = 267, + [295] = 116, + [296] = 264, + [297] = 258, + [298] = 117, + [299] = 118, + [300] = 119, + [301] = 241, + [302] = 107, + [303] = 106, + [304] = 105, + [305] = 101, + [306] = 123, + [307] = 238, + [308] = 119, + [309] = 130, + [310] = 131, + [311] = 242, + [312] = 244, + [313] = 249, + [314] = 250, + [315] = 228, + [316] = 316, + [317] = 231, + [318] = 236, + [319] = 319, + [320] = 320, + [321] = 231, + [322] = 271, + [323] = 128, + [324] = 121, + [325] = 269, + [326] = 270, + [327] = 122, + [328] = 270, + [329] = 271, + [330] = 269, + [331] = 270, + [332] = 269, + [333] = 228, + [334] = 236, + [335] = 93, + [336] = 124, + [337] = 126, + [338] = 231, + [339] = 236, + [340] = 128, + [341] = 231, + [342] = 127, + [343] = 120, + [344] = 288, + [345] = 104, + [346] = 288, + [347] = 267, + [348] = 271, + [349] = 94, + [350] = 110, + [351] = 96, + [352] = 264, + [353] = 316, + [354] = 97, + [355] = 258, + [356] = 236, + [357] = 241, + [358] = 319, + [359] = 103, + [360] = 102, + [361] = 238, + [362] = 242, + [363] = 101, + [364] = 244, + [365] = 320, + [366] = 123, + [367] = 125, + [368] = 320, + [369] = 129, + [370] = 125, + [371] = 271, + [372] = 258, + [373] = 130, + [374] = 126, + [375] = 124, + [376] = 131, + [377] = 249, + [378] = 98, + [379] = 93, + [380] = 250, + [381] = 99, + [382] = 100, + [383] = 100, + [384] = 269, + [385] = 102, + [386] = 99, + [387] = 270, + [388] = 103, + [389] = 98, + [390] = 319, + [391] = 316, + [392] = 316, + [393] = 105, + [394] = 107, + [395] = 319, + [396] = 319, + [397] = 108, + [398] = 241, + [399] = 250, + [400] = 316, + [401] = 249, + [402] = 109, + [403] = 244, + [404] = 121, + [405] = 242, + [406] = 238, + [407] = 110, + [408] = 111, + [409] = 92, + [410] = 241, + [411] = 112, + [412] = 320, + [413] = 129, + [414] = 264, + [415] = 320, + [416] = 250, + [417] = 113, + [418] = 258, + [419] = 249, + [420] = 114, + [421] = 264, + [422] = 244, + [423] = 242, + [424] = 267, + [425] = 115, + [426] = 116, + [427] = 238, + [428] = 117, + [429] = 238, + [430] = 118, + [431] = 288, + [432] = 241, + [433] = 258, + [434] = 264, + [435] = 267, + [436] = 288, + [437] = 119, + [438] = 270, + [439] = 228, + [440] = 269, + [441] = 242, + [442] = 236, + [443] = 231, + [444] = 244, + [445] = 249, + [446] = 320, + [447] = 250, + [448] = 130, + [449] = 316, + [450] = 319, + [451] = 131, + [452] = 151, + [453] = 149, + [454] = 146, + [455] = 142, [456] = 149, - [457] = 150, - [458] = 152, - [459] = 132, - [460] = 134, - [461] = 137, - [462] = 142, - [463] = 153, - [464] = 139, - [465] = 136, - [466] = 141, - [467] = 133, - [468] = 140, - [469] = 147, - [470] = 135, - [471] = 138, - [472] = 146, - [473] = 145, - [474] = 151, + [457] = 141, + [458] = 138, + [459] = 150, + [460] = 147, + [461] = 148, + [462] = 151, + [463] = 152, + [464] = 140, + [465] = 144, + [466] = 133, + [467] = 140, + [468] = 153, + [469] = 138, + [470] = 141, + [471] = 152, + [472] = 142, + [473] = 132, + [474] = 143, [475] = 147, - [476] = 140, - [477] = 133, - [478] = 144, - [479] = 135, - [480] = 136, - [481] = 138, - [482] = 148, - [483] = 149, - [484] = 150, - [485] = 151, - [486] = 152, - [487] = 139, - [488] = 146, - [489] = 132, - [490] = 153, - [491] = 134, - [492] = 137, - [493] = 142, - [494] = 153, - [495] = 151, - [496] = 152, - [497] = 146, - [498] = 141, - [499] = 139, - [500] = 133, - [501] = 132, - [502] = 135, - [503] = 148, - [504] = 147, - [505] = 144, - [506] = 138, - [507] = 145, - [508] = 134, - [509] = 137, + [476] = 153, + [477] = 143, + [478] = 134, + [479] = 136, + [480] = 150, + [481] = 139, + [482] = 134, + [483] = 135, + [484] = 136, + [485] = 139, + [486] = 146, + [487] = 145, + [488] = 145, + [489] = 135, + [490] = 133, + [491] = 132, + [492] = 148, + [493] = 144, + [494] = 141, + [495] = 147, + [496] = 149, + [497] = 148, + [498] = 144, + [499] = 134, + [500] = 143, + [501] = 139, + [502] = 502, + [503] = 132, + [504] = 138, + [505] = 152, + [506] = 146, + [507] = 133, + [508] = 151, + [509] = 142, [510] = 150, - [511] = 142, - [512] = 512, - [513] = 149, + [511] = 153, + [512] = 145, + [513] = 135, [514] = 140, [515] = 136, [516] = 516, [517] = 516, [518] = 518, [519] = 518, - [520] = 518, + [520] = 516, [521] = 516, [522] = 518, - [523] = 516, + [523] = 518, [524] = 90, [525] = 525, [526] = 526, @@ -3291,28 +3274,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 541, - [543] = 543, + [542] = 540, + [543] = 540, [544] = 544, [545] = 544, - [546] = 541, - [547] = 541, + [546] = 540, + [547] = 544, [548] = 544, - [549] = 544, + [549] = 549, [550] = 550, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 556, - [557] = 556, - [558] = 556, - [559] = 554, - [560] = 554, - [561] = 554, - [562] = 556, - [563] = 563, + [556] = 555, + [557] = 557, + [558] = 558, + [559] = 553, + [560] = 555, + [561] = 553, + [562] = 555, + [563] = 553, [564] = 564, [565] = 564, [566] = 564, @@ -3323,100 +3306,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [571] = 564, [572] = 564, [573] = 564, - [574] = 553, - [575] = 564, + [574] = 564, + [575] = 554, [576] = 576, - [577] = 577, - [578] = 553, - [579] = 579, + [577] = 554, + [578] = 578, + [579] = 554, [580] = 580, - [581] = 580, + [581] = 581, [582] = 582, - [583] = 553, - [584] = 584, + [583] = 583, + [584] = 583, [585] = 585, [586] = 586, [587] = 587, - [588] = 588, + [588] = 586, [589] = 589, [590] = 590, - [591] = 590, + [591] = 591, [592] = 592, - [593] = 587, - [594] = 592, - [595] = 592, - [596] = 588, - [597] = 585, - [598] = 598, - [599] = 599, + [593] = 593, + [594] = 586, + [595] = 595, + [596] = 596, + [597] = 593, + [598] = 590, + [599] = 596, [600] = 600, - [601] = 599, - [602] = 600, - [603] = 603, - [604] = 590, - [605] = 590, - [606] = 599, - [607] = 587, - [608] = 608, - [609] = 600, - [610] = 589, - [611] = 588, - [612] = 587, - [613] = 592, - [614] = 586, - [615] = 608, - [616] = 616, - [617] = 590, - [618] = 600, - [619] = 585, - [620] = 603, - [621] = 621, - [622] = 586, - [623] = 588, - [624] = 608, - [625] = 585, - [626] = 589, - [627] = 603, - [628] = 603, - [629] = 587, - [630] = 630, - [631] = 592, - [632] = 589, - [633] = 589, - [634] = 585, - [635] = 600, - [636] = 603, - [637] = 608, - [638] = 585, - [639] = 589, - [640] = 603, - [641] = 586, - [642] = 599, + [601] = 600, + [602] = 589, + [603] = 596, + [604] = 587, + [605] = 589, + [606] = 590, + [607] = 607, + [608] = 592, + [609] = 595, + [610] = 586, + [611] = 591, + [612] = 585, + [613] = 591, + [614] = 590, + [615] = 593, + [616] = 596, + [617] = 587, + [618] = 585, + [619] = 591, + [620] = 620, + [621] = 592, + [622] = 587, + [623] = 623, + [624] = 595, + [625] = 589, + [626] = 600, + [627] = 586, + [628] = 628, + [629] = 589, + [630] = 595, + [631] = 593, + [632] = 595, + [633] = 595, + [634] = 593, + [635] = 585, + [636] = 587, + [637] = 590, + [638] = 592, + [639] = 591, + [640] = 600, + [641] = 587, + [642] = 589, [643] = 592, - [644] = 587, - [645] = 608, - [646] = 608, - [647] = 600, - [648] = 586, - [649] = 586, - [650] = 588, - [651] = 588, + [644] = 591, + [645] = 590, + [646] = 596, + [647] = 593, + [648] = 596, + [649] = 585, + [650] = 592, + [651] = 585, [652] = 652, [653] = 653, [654] = 654, - [655] = 652, + [655] = 655, [656] = 656, - [657] = 653, - [658] = 658, + [657] = 657, + [658] = 653, [659] = 659, [660] = 660, [661] = 661, [662] = 662, - [663] = 653, - [664] = 653, - [665] = 665, - [666] = 666, - [667] = 667, + [663] = 663, + [664] = 664, + [665] = 664, + [666] = 653, + [667] = 653, [668] = 668, [669] = 669, [670] = 670, @@ -3427,81 +3410,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [675] = 675, [676] = 676, [677] = 677, - [678] = 670, - [679] = 670, - [680] = 677, + [678] = 673, + [679] = 679, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 686, - [688] = 670, - [689] = 675, + [684] = 681, + [685] = 679, + [686] = 674, + [687] = 677, + [688] = 688, + [689] = 689, [690] = 690, - [691] = 676, - [692] = 673, - [693] = 676, - [694] = 671, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, [695] = 695, - [696] = 686, - [697] = 697, - [698] = 698, - [699] = 675, - [700] = 700, - [701] = 673, - [702] = 681, - [703] = 676, - [704] = 671, - [705] = 695, - [706] = 669, - [707] = 669, - [708] = 708, - [709] = 681, - [710] = 684, - [711] = 690, - [712] = 698, - [713] = 713, - [714] = 682, - [715] = 695, - [716] = 669, - [717] = 677, - [718] = 713, - [719] = 698, - [720] = 681, - [721] = 695, - [722] = 698, - [723] = 723, - [724] = 690, - [725] = 671, - [726] = 682, + [696] = 696, + [697] = 672, + [698] = 696, + [699] = 699, + [700] = 695, + [701] = 679, + [702] = 693, + [703] = 692, + [704] = 689, + [705] = 688, + [706] = 676, + [707] = 694, + [708] = 681, + [709] = 691, + [710] = 677, + [711] = 672, + [712] = 674, + [713] = 695, + [714] = 714, + [715] = 715, + [716] = 694, + [717] = 717, + [718] = 691, + [719] = 693, + [720] = 676, + [721] = 677, + [722] = 722, + [723] = 673, + [724] = 676, + [725] = 722, + [726] = 692, [727] = 673, - [728] = 728, - [729] = 675, - [730] = 684, - [731] = 683, - [732] = 676, - [733] = 733, + [728] = 673, + [729] = 672, + [730] = 683, + [731] = 674, + [732] = 675, + [733] = 683, [734] = 682, - [735] = 690, - [736] = 683, - [737] = 713, - [738] = 708, - [739] = 684, - [740] = 740, - [741] = 741, - [742] = 685, - [743] = 685, - [744] = 740, - [745] = 745, - [746] = 677, - [747] = 686, - [748] = 677, - [749] = 683, - [750] = 685, - [751] = 713, - [752] = 676, + [735] = 672, + [736] = 691, + [737] = 694, + [738] = 696, + [739] = 695, + [740] = 693, + [741] = 692, + [742] = 689, + [743] = 683, + [744] = 682, + [745] = 673, + [746] = 688, + [747] = 679, + [748] = 681, + [749] = 696, + [750] = 688, + [751] = 689, + [752] = 682, [753] = 753, [754] = 754, [755] = 755, @@ -3510,10 +3493,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [758] = 576, [759] = 759, [760] = 760, - [761] = 761, + [761] = 760, [762] = 525, [763] = 526, - [764] = 761, + [764] = 764, [765] = 765, [766] = 766, [767] = 767, @@ -3563,44 +3546,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [811] = 811, [812] = 812, [813] = 813, - [814] = 812, - [815] = 812, - [816] = 812, - [817] = 812, + [814] = 813, + [815] = 813, + [816] = 813, + [817] = 813, [818] = 818, [819] = 819, [820] = 820, - [821] = 821, + [821] = 820, [822] = 820, [823] = 820, [824] = 820, - [825] = 820, + [825] = 825, [826] = 820, - [827] = 790, - [828] = 782, - [829] = 786, - [830] = 769, - [831] = 792, - [832] = 774, - [833] = 788, - [834] = 768, - [835] = 803, - [836] = 767, - [837] = 809, - [838] = 798, - [839] = 793, - [840] = 840, - [841] = 777, - [842] = 787, - [843] = 778, - [844] = 806, - [845] = 807, - [846] = 805, - [847] = 811, - [848] = 770, - [849] = 780, - [850] = 151, - [851] = 851, + [827] = 765, + [828] = 778, + [829] = 810, + [830] = 770, + [831] = 777, + [832] = 809, + [833] = 782, + [834] = 834, + [835] = 766, + [836] = 795, + [837] = 769, + [838] = 806, + [839] = 801, + [840] = 774, + [841] = 796, + [842] = 793, + [843] = 799, + [844] = 803, + [845] = 805, + [846] = 811, + [847] = 790, + [848] = 785, + [849] = 798, + [850] = 850, + [851] = 132, [852] = 852, [853] = 853, [854] = 854, @@ -3608,319 +3591,319 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 147, - [861] = 861, - [862] = 862, + [859] = 148, + [860] = 860, + [861] = 144, + [862] = 153, [863] = 863, [864] = 864, [865] = 865, [866] = 866, [867] = 867, - [868] = 135, + [868] = 868, [869] = 869, - [870] = 138, - [871] = 146, + [870] = 870, + [871] = 145, [872] = 872, - [873] = 145, - [874] = 874, - [875] = 821, - [876] = 151, - [877] = 858, - [878] = 867, - [879] = 862, - [880] = 863, - [881] = 864, - [882] = 882, - [883] = 865, - [884] = 861, - [885] = 866, - [886] = 869, - [887] = 872, - [888] = 874, - [889] = 856, - [890] = 857, - [891] = 145, - [892] = 146, - [893] = 855, - [894] = 138, - [895] = 135, - [896] = 147, - [897] = 851, - [898] = 854, - [899] = 853, - [900] = 852, - [901] = 757, - [902] = 902, - [903] = 525, - [904] = 756, - [905] = 526, - [906] = 874, - [907] = 856, - [908] = 863, - [909] = 862, - [910] = 803, - [911] = 872, - [912] = 851, - [913] = 858, - [914] = 806, - [915] = 864, - [916] = 916, + [873] = 873, + [874] = 135, + [875] = 875, + [876] = 132, + [877] = 153, + [878] = 864, + [879] = 867, + [880] = 144, + [881] = 865, + [882] = 850, + [883] = 868, + [884] = 884, + [885] = 852, + [886] = 870, + [887] = 148, + [888] = 888, + [889] = 863, + [890] = 890, + [891] = 891, + [892] = 856, + [893] = 860, + [894] = 869, + [895] = 895, + [896] = 872, + [897] = 897, + [898] = 873, + [899] = 855, + [900] = 854, + [901] = 145, + [902] = 135, + [903] = 857, + [904] = 825, + [905] = 905, + [906] = 858, + [907] = 853, + [908] = 908, + [909] = 909, + [910] = 525, + [911] = 526, + [912] = 757, + [913] = 756, + [914] = 865, + [915] = 132, + [916] = 850, [917] = 865, - [918] = 861, - [919] = 866, - [920] = 916, - [921] = 151, - [922] = 916, - [923] = 853, - [924] = 145, - [925] = 853, - [926] = 926, + [918] = 864, + [919] = 856, + [920] = 863, + [921] = 803, + [922] = 922, + [923] = 805, + [924] = 924, + [925] = 873, + [926] = 806, [927] = 872, - [928] = 869, - [929] = 869, - [930] = 857, - [931] = 852, - [932] = 782, - [933] = 856, - [934] = 934, - [935] = 145, - [936] = 768, - [937] = 146, - [938] = 146, - [939] = 863, - [940] = 852, - [941] = 862, - [942] = 855, - [943] = 851, - [944] = 854, - [945] = 945, - [946] = 790, - [947] = 947, - [948] = 807, - [949] = 866, - [950] = 861, - [951] = 916, - [952] = 857, - [953] = 916, - [954] = 786, + [928] = 870, + [929] = 860, + [930] = 867, + [931] = 868, + [932] = 850, + [933] = 852, + [934] = 852, + [935] = 924, + [936] = 867, + [937] = 864, + [938] = 793, + [939] = 868, + [940] = 870, + [941] = 941, + [942] = 854, + [943] = 145, + [944] = 857, + [945] = 856, + [946] = 863, + [947] = 857, + [948] = 924, + [949] = 801, + [950] = 860, + [951] = 858, + [952] = 952, + [953] = 953, + [954] = 853, [955] = 858, - [956] = 769, - [957] = 138, - [958] = 867, - [959] = 864, - [960] = 135, - [961] = 792, - [962] = 147, - [963] = 788, - [964] = 798, - [965] = 855, - [966] = 966, - [967] = 147, - [968] = 854, - [969] = 867, - [970] = 874, - [971] = 135, - [972] = 138, - [973] = 793, - [974] = 151, - [975] = 767, - [976] = 865, - [977] = 98, - [978] = 103, - [979] = 129, - [980] = 128, + [956] = 956, + [957] = 765, + [958] = 135, + [959] = 924, + [960] = 810, + [961] = 872, + [962] = 809, + [963] = 799, + [964] = 796, + [965] = 853, + [966] = 854, + [967] = 855, + [968] = 873, + [969] = 766, + [970] = 869, + [971] = 855, + [972] = 972, + [973] = 924, + [974] = 974, + [975] = 145, + [976] = 135, + [977] = 977, + [978] = 795, + [979] = 778, + [980] = 153, [981] = 981, [982] = 982, - [983] = 983, - [984] = 983, - [985] = 985, - [986] = 986, - [987] = 983, + [983] = 153, + [984] = 132, + [985] = 869, + [986] = 148, + [987] = 144, [988] = 988, - [989] = 989, + [989] = 148, [990] = 990, - [991] = 983, - [992] = 992, + [991] = 991, + [992] = 144, [993] = 993, [994] = 994, - [995] = 995, + [995] = 123, [996] = 996, [997] = 997, [998] = 998, - [999] = 983, + [999] = 999, [1000] = 1000, [1001] = 1001, [1002] = 1002, [1003] = 1003, - [1004] = 1004, + [1004] = 131, [1005] = 1005, [1006] = 1006, - [1007] = 992, + [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 1013, - [1015] = 1015, - [1016] = 1012, - [1017] = 1011, + [1014] = 1014, + [1015] = 101, + [1016] = 1016, + [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 1011, + [1021] = 130, [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, - [1026] = 1013, + [1026] = 1026, [1027] = 1027, [1028] = 1028, - [1029] = 1020, - [1030] = 1015, - [1031] = 1028, - [1032] = 1020, - [1033] = 1027, - [1034] = 1018, - [1035] = 1020, - [1036] = 1012, - [1037] = 1015, - [1038] = 1038, - [1039] = 1018, - [1040] = 1040, - [1041] = 1018, - [1042] = 1012, + [1029] = 1029, + [1030] = 1027, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1027, + [1039] = 1039, + [1040] = 1027, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, - [1044] = 1043, - [1045] = 1028, - [1046] = 1046, - [1047] = 1011, - [1048] = 1020, - [1049] = 1027, - [1050] = 1011, - [1051] = 1038, - [1052] = 1043, - [1053] = 1011, - [1054] = 1020, - [1055] = 1013, - [1056] = 1027, - [1057] = 1028, - [1058] = 1038, - [1059] = 1018, - [1060] = 1040, - [1061] = 1040, - [1062] = 1046, + [1044] = 1044, + [1045] = 1027, + [1046] = 1035, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1049, + [1056] = 1047, + [1057] = 1057, + [1058] = 1058, + [1059] = 1052, + [1060] = 1060, + [1061] = 1047, + [1062] = 1062, [1063] = 1063, - [1064] = 1046, - [1065] = 1013, - [1066] = 1046, - [1067] = 1012, - [1068] = 1046, - [1069] = 1018, - [1070] = 1012, - [1071] = 1015, - [1072] = 1040, - [1073] = 1038, - [1074] = 1027, - [1075] = 1043, - [1076] = 1028, - [1077] = 1015, - [1078] = 1025, - [1079] = 1027, - [1080] = 1028, - [1081] = 1038, - [1082] = 1040, - [1083] = 1043, - [1084] = 1038, - [1085] = 1085, - [1086] = 1013, - [1087] = 1087, - [1088] = 1046, - [1089] = 1040, - [1090] = 1090, - [1091] = 798, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 768, - [1103] = 1103, + [1064] = 1048, + [1065] = 1065, + [1066] = 1066, + [1067] = 1065, + [1068] = 1068, + [1069] = 1068, + [1070] = 1066, + [1071] = 1057, + [1072] = 1057, + [1073] = 1047, + [1074] = 1050, + [1075] = 1057, + [1076] = 1050, + [1077] = 1062, + [1078] = 1050, + [1079] = 1047, + [1080] = 1052, + [1081] = 1049, + [1082] = 1049, + [1083] = 1049, + [1084] = 1050, + [1085] = 1068, + [1086] = 1053, + [1087] = 1053, + [1088] = 1065, + [1089] = 1057, + [1090] = 1052, + [1091] = 1054, + [1092] = 1048, + [1093] = 1048, + [1094] = 1047, + [1095] = 1062, + [1096] = 1049, + [1097] = 1048, + [1098] = 1054, + [1099] = 1050, + [1100] = 1053, + [1101] = 1068, + [1102] = 1051, + [1103] = 1066, [1104] = 1104, - [1105] = 1105, - [1106] = 793, - [1107] = 1095, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, + [1105] = 1065, + [1106] = 1068, + [1107] = 1054, + [1108] = 1062, + [1109] = 1048, + [1110] = 1066, + [1111] = 1057, [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, + [1113] = 1052, + [1114] = 1066, + [1115] = 1054, [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 782, - [1120] = 1095, - [1121] = 1096, - [1122] = 1096, - [1123] = 1095, - [1124] = 807, - [1125] = 1096, - [1126] = 806, - [1127] = 1095, - [1128] = 790, - [1129] = 803, - [1130] = 1130, - [1131] = 1095, + [1117] = 1062, + [1118] = 1065, + [1119] = 1062, + [1120] = 1052, + [1121] = 1053, + [1122] = 1068, + [1123] = 1065, + [1124] = 1066, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1128, + [1130] = 793, + [1131] = 1131, [1132] = 1132, - [1133] = 786, - [1134] = 769, - [1135] = 767, - [1136] = 788, - [1137] = 792, + [1133] = 1133, + [1134] = 1134, + [1135] = 795, + [1136] = 1136, + [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, + [1144] = 778, + [1145] = 1138, + [1146] = 765, [1147] = 1147, [1148] = 1148, - [1149] = 1149, + [1149] = 1138, [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 813, - [1157] = 1157, - [1158] = 1158, - [1159] = 1154, + [1151] = 1128, + [1152] = 1128, + [1153] = 806, + [1154] = 809, + [1155] = 810, + [1156] = 1128, + [1157] = 799, + [1158] = 796, + [1159] = 1138, [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, + [1163] = 766, + [1164] = 1128, + [1165] = 805, + [1166] = 801, + [1167] = 803, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 1171, + [1171] = 1170, [1172] = 1172, [1173] = 1173, [1174] = 1174, @@ -3928,64 +3911,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1176] = 1176, [1177] = 1177, [1178] = 1178, - [1179] = 1177, - [1180] = 1178, - [1181] = 1178, - [1182] = 1177, - [1183] = 1178, - [1184] = 1177, - [1185] = 1177, - [1186] = 1178, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, + [1179] = 1169, + [1180] = 1172, + [1181] = 1170, + [1182] = 1172, + [1183] = 1175, + [1184] = 1184, + [1185] = 1169, + [1186] = 1184, + [1187] = 1168, + [1188] = 1168, + [1189] = 812, + [1190] = 1170, + [1191] = 1184, + [1192] = 1168, + [1193] = 1169, + [1194] = 1184, [1195] = 1195, - [1196] = 981, + [1196] = 1196, [1197] = 1197, - [1198] = 1198, - [1199] = 1197, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1198, + [1198] = 1175, + [1199] = 1184, + [1200] = 1172, + [1201] = 1175, + [1202] = 1172, + [1203] = 1176, [1204] = 1204, - [1205] = 1197, - [1206] = 1198, - [1207] = 1202, - [1208] = 1200, - [1209] = 1209, - [1210] = 1202, - [1211] = 1209, - [1212] = 1198, + [1205] = 1170, + [1206] = 1168, + [1207] = 1207, + [1208] = 1175, + [1209] = 1169, + [1210] = 1043, + [1211] = 1063, + [1212] = 1212, [1213] = 1213, - [1214] = 1202, - [1215] = 1197, - [1216] = 1209, - [1217] = 1213, + [1214] = 1197, + [1215] = 1178, + [1216] = 1173, + [1217] = 1217, [1218] = 1218, [1219] = 1219, [1220] = 1220, - [1221] = 1189, + [1221] = 1221, [1222] = 1222, [1223] = 1223, - [1224] = 1209, - [1225] = 1202, - [1226] = 1198, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, [1227] = 1227, - [1228] = 1197, - [1229] = 1209, - [1230] = 1230, + [1228] = 1228, + [1229] = 1217, + [1230] = 1226, [1231] = 1231, [1232] = 1232, - [1233] = 990, - [1234] = 1234, + [1233] = 1233, + [1234] = 1022, [1235] = 1235, - [1236] = 1236, + [1236] = 1228, [1237] = 1237, [1238] = 1238, [1239] = 1239, @@ -3993,93 +3976,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1244, + [1244] = 1241, [1245] = 1245, [1246] = 1246, [1247] = 1247, [1248] = 1248, - [1249] = 1232, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, - [1253] = 1236, - [1254] = 1230, - [1255] = 1255, - [1256] = 1256, + [1252] = 1239, + [1253] = 1253, + [1254] = 1254, + [1255] = 1242, + [1256] = 1240, [1257] = 1257, - [1258] = 1256, - [1259] = 1252, + [1258] = 1258, + [1259] = 1259, [1260] = 1260, - [1261] = 1234, - [1262] = 1257, + [1261] = 1261, + [1262] = 1262, [1263] = 1263, - [1264] = 1245, - [1265] = 1022, - [1266] = 1244, - [1267] = 1243, - [1268] = 1242, - [1269] = 808, - [1270] = 1235, + [1264] = 1264, + [1265] = 1254, + [1266] = 1253, + [1267] = 1238, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, [1271] = 1271, - [1272] = 1236, - [1273] = 1273, - [1274] = 1241, - [1275] = 1236, - [1276] = 1240, - [1277] = 1277, + [1272] = 1272, + [1273] = 1247, + [1274] = 1243, + [1275] = 1275, + [1276] = 1276, + [1277] = 1251, [1278] = 1278, [1279] = 1279, [1280] = 1280, - [1281] = 1236, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1235, - [1286] = 1235, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1278, - [1292] = 808, - [1293] = 1293, - [1294] = 1271, - [1295] = 1260, - [1296] = 1248, + [1281] = 1253, + [1282] = 1275, + [1283] = 1250, + [1284] = 1243, + [1285] = 1285, + [1286] = 1286, + [1287] = 1249, + [1288] = 1253, + [1289] = 1248, + [1290] = 1253, + [1291] = 797, + [1292] = 1292, + [1293] = 1243, + [1294] = 1294, + [1295] = 1294, + [1296] = 1268, [1297] = 1297, - [1298] = 1273, - [1299] = 1231, - [1300] = 1263, - [1301] = 1237, - [1302] = 1277, - [1303] = 1303, - [1304] = 1287, + [1298] = 1298, + [1299] = 1258, + [1300] = 1280, + [1301] = 1278, + [1302] = 1298, + [1303] = 1257, + [1304] = 1297, [1305] = 1297, - [1306] = 1279, - [1307] = 1280, - [1308] = 1297, - [1309] = 1282, - [1310] = 1283, - [1311] = 1250, - [1312] = 1284, - [1313] = 1290, - [1314] = 1293, - [1315] = 1288, - [1316] = 1290, - [1317] = 1290, - [1318] = 1255, + [1306] = 1260, + [1307] = 1261, + [1308] = 1298, + [1309] = 1309, + [1310] = 1262, + [1311] = 1309, + [1312] = 1312, + [1313] = 1245, + [1314] = 1279, + [1315] = 1263, + [1316] = 797, + [1317] = 1298, + [1318] = 1318, [1319] = 1297, - [1320] = 1320, + [1320] = 1272, [1321] = 1297, - [1322] = 1140, - [1323] = 1148, - [1324] = 1167, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, + [1322] = 1264, + [1323] = 1271, + [1324] = 1270, + [1325] = 1269, + [1326] = 1259, + [1327] = 1022, [1328] = 1328, - [1329] = 990, - [1330] = 1330, + [1329] = 1329, + [1330] = 1043, [1331] = 1331, [1332] = 1331, [1333] = 1331, @@ -4090,23 +4073,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1338] = 1335, [1339] = 1339, [1340] = 1340, - [1341] = 1339, + [1341] = 1341, [1342] = 1340, - [1343] = 1339, - [1344] = 1340, - [1345] = 1345, + [1343] = 1343, + [1344] = 1339, + [1345] = 1340, [1346] = 1346, - [1347] = 1346, - [1348] = 1340, - [1349] = 1339, - [1350] = 1340, + [1347] = 1341, + [1348] = 1339, + [1349] = 1341, + [1350] = 1339, [1351] = 1340, - [1352] = 1352, - [1353] = 1353, - [1354] = 1346, - [1355] = 1339, - [1356] = 1346, - [1357] = 1346, + [1352] = 1339, + [1353] = 1341, + [1354] = 1339, + [1355] = 1341, + [1356] = 1340, + [1357] = 1357, [1358] = 1358, [1359] = 1359, [1360] = 1360, @@ -4115,90 +4098,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1366, + [1366] = 1359, [1367] = 1367, - [1368] = 1358, + [1368] = 1359, [1369] = 1369, - [1370] = 1358, - [1371] = 1358, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1358, + [1375] = 1359, [1376] = 1376, [1377] = 1377, - [1378] = 1378, + [1378] = 1359, [1379] = 1379, [1380] = 1380, - [1381] = 1381, - [1382] = 1382, + [1381] = 1380, + [1382] = 1380, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1383, - [1387] = 1387, + [1386] = 1380, + [1387] = 1380, [1388] = 1388, - [1389] = 1383, - [1390] = 1383, - [1391] = 1383, + [1389] = 1389, + [1390] = 1380, + [1391] = 1391, [1392] = 1392, - [1393] = 1383, + [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1398, - [1401] = 1401, - [1402] = 1402, - [1403] = 1398, - [1404] = 1396, - [1405] = 1401, - [1406] = 1406, - [1407] = 1397, + [1396] = 1392, + [1397] = 1395, + [1398] = 1394, + [1399] = 1392, + [1400] = 1400, + [1401] = 1392, + [1402] = 1400, + [1403] = 1403, + [1404] = 1400, + [1405] = 1403, + [1406] = 1403, + [1407] = 1400, [1408] = 1408, - [1409] = 1397, - [1410] = 1399, - [1411] = 1397, - [1412] = 1396, - [1413] = 1399, - [1414] = 1399, - [1415] = 1415, - [1416] = 1401, - [1417] = 1401, - [1418] = 1397, - [1419] = 1398, - [1420] = 1401, - [1421] = 1396, - [1422] = 1398, - [1423] = 1399, - [1424] = 1396, + [1409] = 1395, + [1410] = 1395, + [1411] = 1411, + [1412] = 1394, + [1413] = 1400, + [1414] = 1403, + [1415] = 1394, + [1416] = 1395, + [1417] = 1394, + [1418] = 1392, + [1419] = 1419, + [1420] = 1420, + [1421] = 1403, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1425, + [1427] = 1424, [1428] = 1428, [1429] = 1429, - [1430] = 1425, + [1430] = 1430, [1431] = 1431, - [1432] = 1432, + [1432] = 1424, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1438, + [1438] = 1424, [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1445, + [1445] = 1424, [1446] = 1446, [1447] = 1447, - [1448] = 1425, - [1449] = 1425, + [1448] = 1448, + [1449] = 1449, [1450] = 1450, [1451] = 1451, [1452] = 1452, @@ -4230,524 +4213,522 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1477, + [1481] = 1481, [1482] = 1482, - [1483] = 1480, - [1484] = 1477, + [1483] = 1483, + [1484] = 1479, [1485] = 1485, - [1486] = 1486, + [1486] = 1479, [1487] = 1487, - [1488] = 1488, + [1488] = 1487, [1489] = 1489, [1490] = 1490, - [1491] = 1491, + [1491] = 1489, [1492] = 1492, - [1493] = 1477, - [1494] = 1480, - [1495] = 1485, - [1496] = 1480, + [1493] = 1489, + [1494] = 1489, + [1495] = 1479, + [1496] = 1487, [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1500, - [1501] = 1485, + [1500] = 1487, + [1501] = 1501, [1502] = 1502, - [1503] = 1485, - [1504] = 1504, - [1505] = 1505, - [1506] = 1505, - [1507] = 1505, - [1508] = 1508, + [1503] = 1503, + [1504] = 1503, + [1505] = 1503, + [1506] = 1506, + [1507] = 1507, + [1508] = 1503, [1509] = 1509, [1510] = 1510, - [1511] = 1511, + [1511] = 1509, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1509, + [1516] = 1516, [1517] = 1517, - [1518] = 1505, - [1519] = 1509, - [1520] = 1505, + [1518] = 1518, + [1519] = 1503, + [1520] = 1520, [1521] = 1521, - [1522] = 1522, - [1523] = 1505, - [1524] = 1524, - [1525] = 1517, - [1526] = 1526, - [1527] = 1517, - [1528] = 1505, + [1522] = 1503, + [1523] = 1523, + [1524] = 1509, + [1525] = 1503, + [1526] = 1503, + [1527] = 1527, + [1528] = 1506, [1529] = 1529, [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1505, - [1534] = 1505, + [1531] = 1503, + [1532] = 1506, + [1533] = 1533, + [1534] = 1534, [1535] = 1535, - [1536] = 1535, + [1536] = 1536, [1537] = 1537, [1538] = 1538, [1539] = 1539, - [1540] = 1539, - [1541] = 1541, - [1542] = 1541, + [1540] = 1536, + [1541] = 1535, + [1542] = 1534, [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1547, + [1547] = 1535, [1548] = 1548, - [1549] = 1549, + [1549] = 1538, [1550] = 1550, [1551] = 1551, - [1552] = 1547, + [1552] = 1534, [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1535, - [1558] = 1558, + [1557] = 1557, + [1558] = 1533, [1559] = 1559, - [1560] = 1560, + [1560] = 1538, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1541, - [1565] = 1547, - [1566] = 1559, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, [1567] = 1567, - [1568] = 1545, + [1568] = 1568, [1569] = 1569, - [1570] = 1570, - [1571] = 1562, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1569, + [1570] = 1559, + [1571] = 1571, + [1572] = 1563, + [1573] = 1571, + [1574] = 1555, + [1575] = 1575, [1576] = 1576, - [1577] = 1577, + [1577] = 1561, [1578] = 1578, - [1579] = 1579, - [1580] = 1547, - [1581] = 1581, + [1579] = 1561, + [1580] = 1553, + [1581] = 1554, [1582] = 1582, - [1583] = 1535, - [1584] = 1541, - [1585] = 1559, - [1586] = 1562, - [1587] = 1559, - [1588] = 1562, + [1583] = 1583, + [1584] = 1534, + [1585] = 1535, + [1586] = 1586, + [1587] = 1587, + [1588] = 1538, [1589] = 1589, [1590] = 1590, - [1591] = 1539, + [1591] = 1591, [1592] = 1592, - [1593] = 1545, - [1594] = 1594, - [1595] = 1576, - [1596] = 1596, + [1593] = 1563, + [1594] = 1559, + [1595] = 1563, + [1596] = 1559, [1597] = 1597, - [1598] = 1598, - [1599] = 1569, + [1598] = 1571, + [1599] = 1599, [1600] = 1600, - [1601] = 1570, - [1602] = 1545, - [1603] = 1539, - [1604] = 1541, - [1605] = 1605, - [1606] = 1569, - [1607] = 1539, - [1608] = 1535, - [1609] = 1609, - [1610] = 1610, - [1611] = 1551, - [1612] = 1559, - [1613] = 1562, - [1614] = 1547, - [1615] = 1576, - [1616] = 1616, - [1617] = 1617, + [1601] = 1601, + [1602] = 1565, + [1603] = 1538, + [1604] = 1561, + [1605] = 1571, + [1606] = 1606, + [1607] = 1561, + [1608] = 1608, + [1609] = 1535, + [1610] = 1534, + [1611] = 1611, + [1612] = 1555, + [1613] = 1533, + [1614] = 1614, + [1615] = 1615, + [1616] = 1559, + [1617] = 1563, [1618] = 1618, - [1619] = 1570, - [1620] = 1569, - [1621] = 1543, - [1622] = 1548, + [1619] = 1619, + [1620] = 1571, + [1621] = 1565, + [1622] = 1534, [1623] = 1623, - [1624] = 1624, - [1625] = 1562, - [1626] = 1559, + [1624] = 1535, + [1625] = 1625, + [1626] = 1626, [1627] = 1627, - [1628] = 1569, - [1629] = 1629, + [1628] = 1571, + [1629] = 1555, [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1553, + [1631] = 1587, + [1632] = 1555, + [1633] = 1587, + [1634] = 1634, [1635] = 1635, - [1636] = 1551, - [1637] = 1545, + [1636] = 1636, + [1637] = 1637, [1638] = 1638, [1639] = 1639, - [1640] = 1640, + [1640] = 1639, [1641] = 1641, [1642] = 1642, [1643] = 1643, - [1644] = 1644, + [1644] = 1637, [1645] = 1645, - [1646] = 1645, + [1646] = 1646, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1641, + [1650] = 1650, [1651] = 1651, - [1652] = 1652, + [1652] = 1650, [1653] = 1653, - [1654] = 1648, - [1655] = 1647, + [1654] = 1654, + [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1648, - [1659] = 1659, + [1658] = 1658, + [1659] = 1656, [1660] = 1660, [1661] = 1661, - [1662] = 1641, - [1663] = 1649, - [1664] = 1648, - [1665] = 1665, + [1662] = 1658, + [1663] = 1650, + [1664] = 1664, + [1665] = 1650, [1666] = 1666, - [1667] = 1639, - [1668] = 1652, - [1669] = 1652, - [1670] = 1648, - [1671] = 1641, - [1672] = 1648, - [1673] = 1639, + [1667] = 1643, + [1668] = 1656, + [1669] = 1643, + [1670] = 1639, + [1671] = 1645, + [1672] = 1637, + [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 1676, - [1677] = 1652, - [1678] = 1649, - [1679] = 1639, - [1680] = 1661, + [1676] = 1658, + [1677] = 1658, + [1678] = 1645, + [1679] = 1679, + [1680] = 1680, [1681] = 1681, - [1682] = 1649, - [1683] = 1661, - [1684] = 1639, - [1685] = 1645, - [1686] = 1661, - [1687] = 1641, - [1688] = 1661, - [1689] = 1674, + [1682] = 1658, + [1683] = 1643, + [1684] = 1656, + [1685] = 1685, + [1686] = 1650, + [1687] = 1687, + [1688] = 1660, + [1689] = 1646, [1690] = 1690, - [1691] = 1651, - [1692] = 1652, - [1693] = 1661, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1645, + [1691] = 1656, + [1692] = 1692, + [1693] = 1643, + [1694] = 1637, + [1695] = 1637, + [1696] = 1643, + [1697] = 1656, [1698] = 1645, - [1699] = 1699, - [1700] = 1700, - [1701] = 1645, - [1702] = 1661, - [1703] = 1647, - [1704] = 1645, - [1705] = 1705, - [1706] = 1706, - [1707] = 1645, - [1708] = 1661, - [1709] = 1651, - [1710] = 1645, - [1711] = 1641, - [1712] = 1649, + [1699] = 1646, + [1700] = 1656, + [1701] = 1637, + [1702] = 1643, + [1703] = 1639, + [1704] = 1642, + [1705] = 1645, + [1706] = 1656, + [1707] = 1639, + [1708] = 1643, + [1709] = 1643, + [1710] = 1642, + [1711] = 1639, + [1712] = 1656, [1713] = 1713, - [1714] = 1661, + [1714] = 1714, [1715] = 1715, [1716] = 1716, [1717] = 1717, [1718] = 1718, - [1719] = 1715, + [1719] = 1719, [1720] = 1720, [1721] = 1717, - [1722] = 1722, - [1723] = 1715, - [1724] = 1720, + [1722] = 1719, + [1723] = 1720, + [1724] = 1724, [1725] = 1717, [1726] = 1726, [1727] = 1727, - [1728] = 1728, + [1728] = 1719, [1729] = 1729, [1730] = 1730, [1731] = 1731, [1732] = 1732, - [1733] = 1733, + [1733] = 1720, [1734] = 1734, [1735] = 1735, [1736] = 1736, - [1737] = 1717, - [1738] = 1738, - [1739] = 1715, - [1740] = 1717, + [1737] = 1737, + [1738] = 1717, + [1739] = 1739, + [1740] = 1719, [1741] = 1720, [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1715, - [1747] = 1747, - [1748] = 1720, - [1749] = 1720, + [1746] = 1746, + [1747] = 1713, + [1748] = 1717, + [1749] = 1749, [1750] = 1750, - [1751] = 1751, + [1751] = 1714, [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, - [1756] = 1756, - [1757] = 1731, - [1758] = 1752, - [1759] = 1732, - [1760] = 1742, + [1756] = 1719, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, [1761] = 1761, [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1761, + [1765] = 1720, [1766] = 1766, [1767] = 1767, - [1768] = 1734, + [1768] = 1768, [1769] = 1769, [1770] = 1770, [1771] = 1771, [1772] = 1772, - [1773] = 1718, + [1773] = 1773, [1774] = 1774, - [1775] = 1750, - [1776] = 1776, - [1777] = 1735, - [1778] = 1717, + [1775] = 1774, + [1776] = 1771, + [1777] = 1777, + [1778] = 1773, [1779] = 1779, - [1780] = 1780, + [1780] = 1732, [1781] = 1781, - [1782] = 1767, - [1783] = 1745, - [1784] = 1774, + [1782] = 1731, + [1783] = 1783, + [1784] = 1730, [1785] = 1785, - [1786] = 1779, - [1787] = 1787, - [1788] = 1788, - [1789] = 1716, + [1786] = 1786, + [1787] = 1714, + [1788] = 1742, + [1789] = 1789, [1790] = 1790, - [1791] = 1750, - [1792] = 1755, + [1791] = 1749, + [1792] = 1746, [1793] = 1793, [1794] = 1794, - [1795] = 1745, - [1796] = 1796, - [1797] = 1743, - [1798] = 1756, - [1799] = 1799, - [1800] = 1742, - [1801] = 1801, - [1802] = 1720, + [1795] = 1795, + [1796] = 1734, + [1797] = 1797, + [1798] = 1798, + [1799] = 1736, + [1800] = 1737, + [1801] = 1735, + [1802] = 1781, [1803] = 1803, - [1804] = 1804, - [1805] = 1716, - [1806] = 1754, - [1807] = 1727, - [1808] = 1728, - [1809] = 1809, - [1810] = 1755, + [1804] = 1783, + [1805] = 1715, + [1806] = 1716, + [1807] = 1807, + [1808] = 1808, + [1809] = 1743, + [1810] = 1744, [1811] = 1811, - [1812] = 1753, - [1813] = 1761, - [1814] = 1769, - [1815] = 1754, - [1816] = 1730, - [1817] = 1755, - [1818] = 1715, - [1819] = 1772, - [1820] = 1717, - [1821] = 1736, - [1822] = 1735, - [1823] = 1734, - [1824] = 1770, - [1825] = 1771, - [1826] = 1756, - [1827] = 1771, - [1828] = 1772, - [1829] = 1750, - [1830] = 1750, - [1831] = 1730, - [1832] = 1772, - [1833] = 1733, - [1834] = 1766, - [1835] = 1835, - [1836] = 1732, - [1837] = 1769, - [1838] = 1766, - [1839] = 1771, - [1840] = 1718, - [1841] = 1841, - [1842] = 1842, - [1843] = 1776, - [1844] = 1844, - [1845] = 1738, - [1846] = 1790, - [1847] = 1780, - [1848] = 1770, - [1849] = 1767, + [1812] = 1743, + [1813] = 756, + [1814] = 1724, + [1815] = 757, + [1816] = 1745, + [1817] = 1785, + [1818] = 1758, + [1819] = 1742, + [1820] = 1786, + [1821] = 1785, + [1822] = 1755, + [1823] = 1777, + [1824] = 1754, + [1825] = 1719, + [1826] = 1759, + [1827] = 1760, + [1828] = 1828, + [1829] = 1767, + [1830] = 1764, + [1831] = 1744, + [1832] = 1764, + [1833] = 1833, + [1834] = 1811, + [1835] = 1767, + [1836] = 1720, + [1837] = 1713, + [1838] = 1771, + [1839] = 1839, + [1840] = 1840, + [1841] = 1774, + [1842] = 1762, + [1843] = 1762, + [1844] = 1760, + [1845] = 1773, + [1846] = 1759, + [1847] = 1732, + [1848] = 1720, + [1849] = 1731, [1850] = 1850, - [1851] = 1774, - [1852] = 1715, - [1853] = 1779, - [1854] = 1763, - [1855] = 1762, - [1856] = 1720, - [1857] = 1751, - [1858] = 1727, - [1859] = 1728, - [1860] = 1731, - [1861] = 1747, - [1862] = 1761, - [1863] = 1863, - [1864] = 1744, - [1865] = 1730, + [1851] = 1730, + [1852] = 1777, + [1853] = 1785, + [1854] = 1717, + [1855] = 1786, + [1856] = 1715, + [1857] = 1716, + [1858] = 1719, + [1859] = 1742, + [1860] = 1755, + [1861] = 1861, + [1862] = 1714, + [1863] = 1724, + [1864] = 1777, + [1865] = 1745, [1866] = 1866, [1867] = 1867, - [1868] = 1868, - [1869] = 1790, - [1870] = 757, - [1871] = 1776, - [1872] = 1716, - [1873] = 1756, - [1874] = 1722, - [1875] = 1753, - [1876] = 1729, - [1877] = 1731, - [1878] = 1732, - [1879] = 1720, - [1880] = 1718, - [1881] = 1729, - [1882] = 756, - [1883] = 1776, - [1884] = 1722, - [1885] = 1733, - [1886] = 1745, - [1887] = 1767, - [1888] = 1742, - [1889] = 1774, - [1890] = 1734, - [1891] = 1779, - [1892] = 1892, - [1893] = 1770, - [1894] = 1716, - [1895] = 1895, - [1896] = 1727, - [1897] = 1728, - [1898] = 1735, - [1899] = 1717, - [1900] = 1717, - [1901] = 1730, - [1902] = 1902, - [1903] = 1903, - [1904] = 1754, + [1868] = 1717, + [1869] = 1717, + [1870] = 1749, + [1871] = 1754, + [1872] = 1746, + [1873] = 1867, + [1874] = 1730, + [1875] = 1713, + [1876] = 1876, + [1877] = 1877, + [1878] = 1771, + [1879] = 1745, + [1880] = 1731, + [1881] = 1774, + [1882] = 1811, + [1883] = 1883, + [1884] = 1758, + [1885] = 1732, + [1886] = 1886, + [1887] = 1731, + [1888] = 1744, + [1889] = 1730, + [1890] = 1754, + [1891] = 1861, + [1892] = 1714, + [1893] = 1732, + [1894] = 1715, + [1895] = 1716, + [1896] = 1743, + [1897] = 1734, + [1898] = 1898, + [1899] = 1724, + [1900] = 1900, + [1901] = 1736, + [1902] = 1737, + [1903] = 1735, + [1904] = 1904, [1905] = 1905, - [1906] = 1906, + [1906] = 1783, [1907] = 1907, - [1908] = 1779, - [1909] = 1745, - [1910] = 1727, - [1911] = 1718, - [1912] = 1727, - [1913] = 1727, - [1914] = 1727, - [1915] = 1720, - [1916] = 1916, - [1917] = 1735, - [1918] = 1718, + [1908] = 1715, + [1909] = 1774, + [1910] = 1715, + [1911] = 1715, + [1912] = 1715, + [1913] = 1781, + [1914] = 1771, + [1915] = 1771, + [1916] = 1774, + [1917] = 1781, + [1918] = 1755, [1919] = 1919, - [1920] = 1776, - [1921] = 1774, - [1922] = 1922, - [1923] = 1763, - [1924] = 1754, - [1925] = 1844, + [1920] = 1750, + [1921] = 1840, + [1922] = 1783, + [1923] = 1923, + [1924] = 1719, + [1925] = 1735, [1926] = 1926, - [1927] = 1755, - [1928] = 1928, - [1929] = 1732, - [1930] = 1767, - [1931] = 1722, - [1932] = 1780, - [1933] = 1799, - [1934] = 1934, - [1935] = 1935, - [1936] = 1766, - [1937] = 1937, - [1938] = 1769, - [1939] = 1939, - [1940] = 1738, - [1941] = 1780, - [1942] = 1715, - [1943] = 1790, - [1944] = 1761, - [1945] = 1945, - [1946] = 1844, + [1927] = 1737, + [1928] = 1715, + [1929] = 1743, + [1930] = 1736, + [1931] = 1866, + [1932] = 1850, + [1933] = 1744, + [1934] = 1764, + [1935] = 1734, + [1936] = 1767, + [1937] = 1759, + [1938] = 1760, + [1939] = 1773, + [1940] = 1923, + [1941] = 1732, + [1942] = 1811, + [1943] = 1731, + [1944] = 1923, + [1945] = 1730, + [1946] = 1762, [1947] = 1947, - [1948] = 1729, - [1949] = 1715, - [1950] = 1762, - [1951] = 1951, - [1952] = 1799, - [1953] = 1734, - [1954] = 1766, - [1955] = 1770, - [1956] = 1769, - [1957] = 1957, - [1958] = 1958, - [1959] = 1780, - [1960] = 1960, - [1961] = 1961, - [1962] = 1779, - [1963] = 1774, - [1964] = 1844, - [1965] = 1751, - [1966] = 1767, - [1967] = 1762, - [1968] = 1751, - [1969] = 1766, - [1970] = 1747, - [1971] = 1769, - [1972] = 1744, - [1973] = 1747, - [1974] = 1780, - [1975] = 1771, - [1976] = 1772, - [1977] = 1750, - [1978] = 1744, - [1979] = 1844, - [1980] = 1764, - [1981] = 1981, - [1982] = 1796, - [1983] = 1983, - [1984] = 1763, - [1985] = 1799, - [1986] = 1716, - [1987] = 1796, - [1988] = 1733, - [1989] = 1776, - [1990] = 1799, - [1991] = 1728, - [1992] = 1731, - [1993] = 1738, - [1994] = 1799, - [1995] = 1727, - [1996] = 1796, - [1997] = 1796, - [1998] = 1796, + [1948] = 1746, + [1949] = 1749, + [1950] = 1866, + [1951] = 1745, + [1952] = 1764, + [1953] = 1840, + [1954] = 1767, + [1955] = 1839, + [1956] = 1720, + [1957] = 1773, + [1958] = 1713, + [1959] = 1717, + [1960] = 1714, + [1961] = 1777, + [1962] = 1923, + [1963] = 1963, + [1964] = 1758, + [1965] = 1786, + [1966] = 1762, + [1967] = 1764, + [1968] = 1968, + [1969] = 1767, + [1970] = 1970, + [1971] = 1724, + [1972] = 1773, + [1973] = 1785, + [1974] = 1786, + [1975] = 1975, + [1976] = 1755, + [1977] = 1923, + [1978] = 1742, + [1979] = 1840, + [1980] = 1975, + [1981] = 1719, + [1982] = 1720, + [1983] = 1866, + [1984] = 1742, + [1985] = 1975, + [1986] = 1850, + [1987] = 1987, + [1988] = 1866, + [1989] = 1759, + [1990] = 1990, + [1991] = 1760, + [1992] = 1866, + [1993] = 1716, + [1994] = 1975, + [1995] = 1975, + [1996] = 1975, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -12667,10 +12648,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 40}, [20] = {.lex_state = 40}, [21] = {.lex_state = 40}, - [22] = {.lex_state = 40}, + [22] = {.lex_state = 37}, [23] = {.lex_state = 40}, [24] = {.lex_state = 40}, - [25] = {.lex_state = 37}, + [25] = {.lex_state = 40}, [26] = {.lex_state = 40}, [27] = {.lex_state = 40}, [28] = {.lex_state = 102}, @@ -12679,23 +12660,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 102}, [32] = {.lex_state = 102}, [33] = {.lex_state = 102}, - [34] = {.lex_state = 102}, + [34] = {.lex_state = 39}, [35] = {.lex_state = 102}, [36] = {.lex_state = 102}, [37] = {.lex_state = 102}, [38] = {.lex_state = 102}, [39] = {.lex_state = 102}, - [40] = {.lex_state = 102}, - [41] = {.lex_state = 39}, + [40] = {.lex_state = 39}, + [41] = {.lex_state = 102}, [42] = {.lex_state = 102}, - [43] = {.lex_state = 102}, + [43] = {.lex_state = 39}, [44] = {.lex_state = 102}, [45] = {.lex_state = 102}, [46] = {.lex_state = 102}, [47] = {.lex_state = 102}, - [48] = {.lex_state = 39}, + [48] = {.lex_state = 102}, [49] = {.lex_state = 102}, - [50] = {.lex_state = 39}, + [50] = {.lex_state = 102}, [51] = {.lex_state = 102}, [52] = {.lex_state = 102}, [53] = {.lex_state = 102}, @@ -12711,19 +12692,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 40}, [64] = {.lex_state = 102}, [65] = {.lex_state = 102}, - [66] = {.lex_state = 39}, + [66] = {.lex_state = 102}, [67] = {.lex_state = 102}, [68] = {.lex_state = 39}, - [69] = {.lex_state = 39}, + [69] = {.lex_state = 102}, [70] = {.lex_state = 102}, - [71] = {.lex_state = 102}, - [72] = {.lex_state = 39}, - [73] = {.lex_state = 102}, + [71] = {.lex_state = 39}, + [72] = {.lex_state = 102}, + [73] = {.lex_state = 39}, [74] = {.lex_state = 102}, [75] = {.lex_state = 39}, [76] = {.lex_state = 102}, [77] = {.lex_state = 102}, - [78] = {.lex_state = 102}, + [78] = {.lex_state = 39}, [79] = {.lex_state = 102}, [80] = {.lex_state = 102}, [81] = {.lex_state = 102}, @@ -12782,13 +12763,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 37}, [135] = {.lex_state = 37}, [136] = {.lex_state = 37}, - [137] = {.lex_state = 37}, + [137] = {.lex_state = 40}, [138] = {.lex_state = 37}, [139] = {.lex_state = 37}, [140] = {.lex_state = 37}, [141] = {.lex_state = 37}, [142] = {.lex_state = 37}, - [143] = {.lex_state = 40}, + [143] = {.lex_state = 37}, [144] = {.lex_state = 37}, [145] = {.lex_state = 37}, [146] = {.lex_state = 37}, @@ -12842,7 +12823,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 40}, [195] = {.lex_state = 40}, [196] = {.lex_state = 40}, - [197] = {.lex_state = 102}, + [197] = {.lex_state = 40}, [198] = {.lex_state = 40}, [199] = {.lex_state = 40}, [200] = {.lex_state = 40}, @@ -12851,9 +12832,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 40}, [204] = {.lex_state = 39}, [205] = {.lex_state = 40}, - [206] = {.lex_state = 102}, - [207] = {.lex_state = 36}, - [208] = {.lex_state = 40}, + [206] = {.lex_state = 40}, + [207] = {.lex_state = 40}, + [208] = {.lex_state = 36}, [209] = {.lex_state = 40}, [210] = {.lex_state = 40}, [211] = {.lex_state = 40}, @@ -12861,10 +12842,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 40}, [214] = {.lex_state = 40}, [215] = {.lex_state = 40}, - [216] = {.lex_state = 40}, + [216] = {.lex_state = 102}, [217] = {.lex_state = 40}, [218] = {.lex_state = 40}, - [219] = {.lex_state = 40}, + [219] = {.lex_state = 102}, [220] = {.lex_state = 40}, [221] = {.lex_state = 102}, [222] = {.lex_state = 102}, @@ -12873,61 +12854,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 39}, [226] = {.lex_state = 39}, [227] = {.lex_state = 39}, - [228] = {.lex_state = 39}, + [228] = {.lex_state = 102}, [229] = {.lex_state = 39}, [230] = {.lex_state = 39}, [231] = {.lex_state = 102}, - [232] = {.lex_state = 39}, + [232] = {.lex_state = 102}, [233] = {.lex_state = 39}, - [234] = {.lex_state = 102}, - [235] = {.lex_state = 102}, - [236] = {.lex_state = 39}, - [237] = {.lex_state = 39}, - [238] = {.lex_state = 39}, + [234] = {.lex_state = 39}, + [235] = {.lex_state = 39}, + [236] = {.lex_state = 102}, + [237] = {.lex_state = 102}, + [238] = {.lex_state = 102}, [239] = {.lex_state = 102}, [240] = {.lex_state = 102}, [241] = {.lex_state = 102}, [242] = {.lex_state = 102}, - [243] = {.lex_state = 102}, + [243] = {.lex_state = 39}, [244] = {.lex_state = 102}, [245] = {.lex_state = 39}, [246] = {.lex_state = 102}, - [247] = {.lex_state = 39}, + [247] = {.lex_state = 102}, [248] = {.lex_state = 102}, [249] = {.lex_state = 102}, [250] = {.lex_state = 102}, - [251] = {.lex_state = 102}, - [252] = {.lex_state = 102}, + [251] = {.lex_state = 39}, + [252] = {.lex_state = 39}, [253] = {.lex_state = 39}, [254] = {.lex_state = 39}, - [255] = {.lex_state = 39}, - [256] = {.lex_state = 39}, + [255] = {.lex_state = 102}, + [256] = {.lex_state = 102}, [257] = {.lex_state = 102}, [258] = {.lex_state = 102}, [259] = {.lex_state = 39}, - [260] = {.lex_state = 102}, - [261] = {.lex_state = 39}, - [262] = {.lex_state = 39}, + [260] = {.lex_state = 39}, + [261] = {.lex_state = 102}, + [262] = {.lex_state = 102}, [263] = {.lex_state = 102}, [264] = {.lex_state = 102}, - [265] = {.lex_state = 102}, + [265] = {.lex_state = 39}, [266] = {.lex_state = 39}, [267] = {.lex_state = 102}, [268] = {.lex_state = 39}, [269] = {.lex_state = 102}, - [270] = {.lex_state = 39}, + [270] = {.lex_state = 102}, [271] = {.lex_state = 102}, - [272] = {.lex_state = 39}, - [273] = {.lex_state = 39}, + [272] = {.lex_state = 102}, + [273] = {.lex_state = 102}, [274] = {.lex_state = 39}, - [275] = {.lex_state = 39}, - [276] = {.lex_state = 39}, + [275] = {.lex_state = 102}, + [276] = {.lex_state = 102}, [277] = {.lex_state = 39}, - [278] = {.lex_state = 102}, + [278] = {.lex_state = 39}, [279] = {.lex_state = 39}, [280] = {.lex_state = 39}, - [281] = {.lex_state = 102}, - [282] = {.lex_state = 39}, + [281] = {.lex_state = 39}, + [282] = {.lex_state = 102}, [283] = {.lex_state = 39}, [284] = {.lex_state = 102}, [285] = {.lex_state = 102}, @@ -12935,27 +12916,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 102}, [288] = {.lex_state = 102}, [289] = {.lex_state = 102}, - [290] = {.lex_state = 102}, + [290] = {.lex_state = 39}, [291] = {.lex_state = 39}, - [292] = {.lex_state = 102}, - [293] = {.lex_state = 39}, + [292] = {.lex_state = 39}, + [293] = {.lex_state = 102}, [294] = {.lex_state = 102}, - [295] = {.lex_state = 102}, + [295] = {.lex_state = 39}, [296] = {.lex_state = 102}, - [297] = {.lex_state = 39}, + [297] = {.lex_state = 102}, [298] = {.lex_state = 39}, - [299] = {.lex_state = 102}, - [300] = {.lex_state = 102}, + [299] = {.lex_state = 39}, + [300] = {.lex_state = 39}, [301] = {.lex_state = 102}, [302] = {.lex_state = 102}, [303] = {.lex_state = 102}, [304] = {.lex_state = 102}, - [305] = {.lex_state = 102}, - [306] = {.lex_state = 102}, + [305] = {.lex_state = 39}, + [306] = {.lex_state = 39}, [307] = {.lex_state = 102}, [308] = {.lex_state = 102}, - [309] = {.lex_state = 102}, - [310] = {.lex_state = 102}, + [309] = {.lex_state = 39}, + [310] = {.lex_state = 39}, [311] = {.lex_state = 102}, [312] = {.lex_state = 102}, [313] = {.lex_state = 102}, @@ -12995,7 +12976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [347] = {.lex_state = 102}, [348] = {.lex_state = 102}, [349] = {.lex_state = 102}, - [350] = {.lex_state = 102}, + [350] = {.lex_state = 39}, [351] = {.lex_state = 102}, [352] = {.lex_state = 102}, [353] = {.lex_state = 102}, @@ -13047,7 +13028,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 102}, [400] = {.lex_state = 102}, [401] = {.lex_state = 102}, - [402] = {.lex_state = 39}, + [402] = {.lex_state = 102}, [403] = {.lex_state = 102}, [404] = {.lex_state = 102}, [405] = {.lex_state = 102}, @@ -13098,47 +13079,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 102}, [451] = {.lex_state = 102}, [452] = {.lex_state = 102}, - [453] = {.lex_state = 39}, + [453] = {.lex_state = 102}, [454] = {.lex_state = 39}, - [455] = {.lex_state = 39}, + [455] = {.lex_state = 102}, [456] = {.lex_state = 39}, - [457] = {.lex_state = 39}, - [458] = {.lex_state = 39}, + [457] = {.lex_state = 102}, + [458] = {.lex_state = 102}, [459] = {.lex_state = 39}, - [460] = {.lex_state = 39}, - [461] = {.lex_state = 39}, + [460] = {.lex_state = 102}, + [461] = {.lex_state = 102}, [462] = {.lex_state = 39}, [463] = {.lex_state = 39}, [464] = {.lex_state = 39}, - [465] = {.lex_state = 39}, + [465] = {.lex_state = 102}, [466] = {.lex_state = 102}, - [467] = {.lex_state = 39}, - [468] = {.lex_state = 39}, + [467] = {.lex_state = 102}, + [468] = {.lex_state = 102}, [469] = {.lex_state = 39}, [470] = {.lex_state = 39}, - [471] = {.lex_state = 39}, + [471] = {.lex_state = 102}, [472] = {.lex_state = 39}, - [473] = {.lex_state = 39}, + [473] = {.lex_state = 102}, [474] = {.lex_state = 39}, - [475] = {.lex_state = 102}, - [476] = {.lex_state = 102}, + [475] = {.lex_state = 39}, + [476] = {.lex_state = 39}, [477] = {.lex_state = 102}, - [478] = {.lex_state = 102}, - [479] = {.lex_state = 102}, + [478] = {.lex_state = 39}, + [479] = {.lex_state = 39}, [480] = {.lex_state = 102}, - [481] = {.lex_state = 102}, + [481] = {.lex_state = 39}, [482] = {.lex_state = 102}, [483] = {.lex_state = 102}, [484] = {.lex_state = 102}, [485] = {.lex_state = 102}, [486] = {.lex_state = 102}, [487] = {.lex_state = 102}, - [488] = {.lex_state = 102}, - [489] = {.lex_state = 102}, - [490] = {.lex_state = 102}, - [491] = {.lex_state = 102}, - [492] = {.lex_state = 102}, - [493] = {.lex_state = 102}, + [488] = {.lex_state = 39}, + [489] = {.lex_state = 39}, + [490] = {.lex_state = 39}, + [491] = {.lex_state = 39}, + [492] = {.lex_state = 39}, + [493] = {.lex_state = 39}, [494] = {.lex_state = 102}, [495] = {.lex_state = 102}, [496] = {.lex_state = 102}, @@ -13185,7 +13166,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 102}, [538] = {.lex_state = 102}, [539] = {.lex_state = 102}, - [540] = {.lex_state = 102}, + [540] = {.lex_state = 44}, [541] = {.lex_state = 44}, [542] = {.lex_state = 44}, [543] = {.lex_state = 44}, @@ -13194,12 +13175,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [546] = {.lex_state = 44}, [547] = {.lex_state = 44}, [548] = {.lex_state = 44}, - [549] = {.lex_state = 44}, + [549] = {.lex_state = 102}, [550] = {.lex_state = 102}, [551] = {.lex_state = 102}, [552] = {.lex_state = 102}, - [553] = {.lex_state = 44}, - [554] = {.lex_state = 45}, + [553] = {.lex_state = 45}, + [554] = {.lex_state = 44}, [555] = {.lex_state = 45}, [556] = {.lex_state = 45}, [557] = {.lex_state = 45}, @@ -13223,13 +13204,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [575] = {.lex_state = 45}, [576] = {.lex_state = 45}, [577] = {.lex_state = 43}, - [578] = {.lex_state = 43}, + [578] = {.lex_state = 48}, [579] = {.lex_state = 48}, - [580] = {.lex_state = 102}, - [581] = {.lex_state = 102}, - [582] = {.lex_state = 48}, - [583] = {.lex_state = 48}, - [584] = {.lex_state = 43}, + [580] = {.lex_state = 48}, + [581] = {.lex_state = 43}, + [582] = {.lex_state = 43}, + [583] = {.lex_state = 102}, + [584] = {.lex_state = 102}, [585] = {.lex_state = 102}, [586] = {.lex_state = 102}, [587] = {.lex_state = 102}, @@ -13243,7 +13224,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [595] = {.lex_state = 102}, [596] = {.lex_state = 102}, [597] = {.lex_state = 102}, - [598] = {.lex_state = 44}, + [598] = {.lex_state = 102}, [599] = {.lex_state = 102}, [600] = {.lex_state = 102}, [601] = {.lex_state = 102}, @@ -13265,7 +13246,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 102}, [618] = {.lex_state = 102}, [619] = {.lex_state = 102}, - [620] = {.lex_state = 102}, + [620] = {.lex_state = 44}, [621] = {.lex_state = 102}, [622] = {.lex_state = 102}, [623] = {.lex_state = 102}, @@ -13317,15 +13298,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 102}, [670] = {.lex_state = 102}, [671] = {.lex_state = 102}, - [672] = {.lex_state = 102}, + [672] = {.lex_state = 44}, [673] = {.lex_state = 102}, [674] = {.lex_state = 102}, [675] = {.lex_state = 102}, [676] = {.lex_state = 102}, - [677] = {.lex_state = 44}, + [677] = {.lex_state = 102}, [678] = {.lex_state = 102}, [679] = {.lex_state = 102}, - [680] = {.lex_state = 44}, + [680] = {.lex_state = 102}, [681] = {.lex_state = 102}, [682] = {.lex_state = 102}, [683] = {.lex_state = 102}, @@ -13342,7 +13323,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [694] = {.lex_state = 102}, [695] = {.lex_state = 102}, [696] = {.lex_state = 102}, - [697] = {.lex_state = 102}, + [697] = {.lex_state = 44}, [698] = {.lex_state = 102}, [699] = {.lex_state = 102}, [700] = {.lex_state = 102}, @@ -13356,13 +13337,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [708] = {.lex_state = 102}, [709] = {.lex_state = 102}, [710] = {.lex_state = 102}, - [711] = {.lex_state = 102}, + [711] = {.lex_state = 44}, [712] = {.lex_state = 102}, [713] = {.lex_state = 102}, [714] = {.lex_state = 102}, [715] = {.lex_state = 102}, [716] = {.lex_state = 102}, - [717] = {.lex_state = 44}, + [717] = {.lex_state = 102}, [718] = {.lex_state = 102}, [719] = {.lex_state = 102}, [720] = {.lex_state = 102}, @@ -13374,13 +13355,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 102}, [727] = {.lex_state = 102}, [728] = {.lex_state = 102}, - [729] = {.lex_state = 102}, + [729] = {.lex_state = 44}, [730] = {.lex_state = 102}, [731] = {.lex_state = 102}, [732] = {.lex_state = 102}, [733] = {.lex_state = 102}, [734] = {.lex_state = 102}, - [735] = {.lex_state = 102}, + [735] = {.lex_state = 44}, [736] = {.lex_state = 102}, [737] = {.lex_state = 102}, [738] = {.lex_state = 102}, @@ -13391,9 +13372,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 102}, [744] = {.lex_state = 102}, [745] = {.lex_state = 102}, - [746] = {.lex_state = 44}, + [746] = {.lex_state = 102}, [747] = {.lex_state = 102}, - [748] = {.lex_state = 44}, + [748] = {.lex_state = 102}, [749] = {.lex_state = 102}, [750] = {.lex_state = 102}, [751] = {.lex_state = 102}, @@ -13405,17 +13386,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 42}, [758] = {.lex_state = 45}, [759] = {.lex_state = 44}, - [760] = {.lex_state = 44}, - [761] = {.lex_state = 45}, + [760] = {.lex_state = 45}, + [761] = {.lex_state = 102}, [762] = {.lex_state = 102}, [763] = {.lex_state = 102}, - [764] = {.lex_state = 102}, + [764] = {.lex_state = 44}, [765] = {.lex_state = 45}, [766] = {.lex_state = 45}, [767] = {.lex_state = 45}, [768] = {.lex_state = 45}, [769] = {.lex_state = 45}, - [770] = {.lex_state = 43}, + [770] = {.lex_state = 45}, [771] = {.lex_state = 45}, [772] = {.lex_state = 45}, [773] = {.lex_state = 45}, @@ -13425,17 +13406,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 45}, [778] = {.lex_state = 45}, [779] = {.lex_state = 45}, - [780] = {.lex_state = 43}, + [780] = {.lex_state = 45}, [781] = {.lex_state = 45}, [782] = {.lex_state = 45}, [783] = {.lex_state = 45}, [784] = {.lex_state = 45}, - [785] = {.lex_state = 45}, + [785] = {.lex_state = 43}, [786] = {.lex_state = 45}, [787] = {.lex_state = 45}, [788] = {.lex_state = 45}, [789] = {.lex_state = 45}, - [790] = {.lex_state = 45}, + [790] = {.lex_state = 43}, [791] = {.lex_state = 45}, [792] = {.lex_state = 45}, [793] = {.lex_state = 45}, @@ -13443,22 +13424,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [795] = {.lex_state = 45}, [796] = {.lex_state = 45}, [797] = {.lex_state = 45}, - [798] = {.lex_state = 45}, + [798] = {.lex_state = 43}, [799] = {.lex_state = 45}, [800] = {.lex_state = 45}, [801] = {.lex_state = 45}, [802] = {.lex_state = 45}, [803] = {.lex_state = 45}, [804] = {.lex_state = 45}, - [805] = {.lex_state = 43}, + [805] = {.lex_state = 45}, [806] = {.lex_state = 45}, [807] = {.lex_state = 45}, [808] = {.lex_state = 45}, [809] = {.lex_state = 45}, [810] = {.lex_state = 45}, [811] = {.lex_state = 45}, - [812] = {.lex_state = 44}, - [813] = {.lex_state = 102}, + [812] = {.lex_state = 102}, + [813] = {.lex_state = 44}, [814] = {.lex_state = 44}, [815] = {.lex_state = 44}, [816] = {.lex_state = 44}, @@ -13466,11 +13447,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 44}, [819] = {.lex_state = 44}, [820] = {.lex_state = 45}, - [821] = {.lex_state = 102}, + [821] = {.lex_state = 45}, [822] = {.lex_state = 45}, [823] = {.lex_state = 45}, [824] = {.lex_state = 45}, - [825] = {.lex_state = 45}, + [825] = {.lex_state = 102}, [826] = {.lex_state = 45}, [827] = {.lex_state = 45}, [828] = {.lex_state = 45}, @@ -13479,13 +13460,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [831] = {.lex_state = 45}, [832] = {.lex_state = 45}, [833] = {.lex_state = 45}, - [834] = {.lex_state = 45}, + [834] = {.lex_state = 44}, [835] = {.lex_state = 45}, [836] = {.lex_state = 45}, [837] = {.lex_state = 45}, [838] = {.lex_state = 45}, [839] = {.lex_state = 45}, - [840] = {.lex_state = 44}, + [840] = {.lex_state = 45}, [841] = {.lex_state = 45}, [842] = {.lex_state = 45}, [843] = {.lex_state = 45}, @@ -13527,120 +13508,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [879] = {.lex_state = 45}, [880] = {.lex_state = 45}, [881] = {.lex_state = 45}, - [882] = {.lex_state = 44}, + [882] = {.lex_state = 45}, [883] = {.lex_state = 45}, - [884] = {.lex_state = 45}, + [884] = {.lex_state = 44}, [885] = {.lex_state = 45}, [886] = {.lex_state = 45}, [887] = {.lex_state = 45}, - [888] = {.lex_state = 45}, + [888] = {.lex_state = 44}, [889] = {.lex_state = 45}, - [890] = {.lex_state = 45}, - [891] = {.lex_state = 45}, + [890] = {.lex_state = 44}, + [891] = {.lex_state = 44}, [892] = {.lex_state = 45}, [893] = {.lex_state = 45}, [894] = {.lex_state = 45}, - [895] = {.lex_state = 45}, + [895] = {.lex_state = 44}, [896] = {.lex_state = 45}, - [897] = {.lex_state = 45}, + [897] = {.lex_state = 44}, [898] = {.lex_state = 45}, [899] = {.lex_state = 45}, [900] = {.lex_state = 45}, - [901] = {.lex_state = 44}, - [902] = {.lex_state = 44}, - [903] = {.lex_state = 44}, + [901] = {.lex_state = 45}, + [902] = {.lex_state = 45}, + [903] = {.lex_state = 45}, [904] = {.lex_state = 44}, [905] = {.lex_state = 44}, - [906] = {.lex_state = 48}, - [907] = {.lex_state = 48}, - [908] = {.lex_state = 43}, - [909] = {.lex_state = 43}, - [910] = {.lex_state = 45}, - [911] = {.lex_state = 43}, - [912] = {.lex_state = 48}, - [913] = {.lex_state = 48}, - [914] = {.lex_state = 45}, - [915] = {.lex_state = 48}, - [916] = {.lex_state = 42}, + [906] = {.lex_state = 45}, + [907] = {.lex_state = 45}, + [908] = {.lex_state = 44}, + [909] = {.lex_state = 44}, + [910] = {.lex_state = 44}, + [911] = {.lex_state = 44}, + [912] = {.lex_state = 44}, + [913] = {.lex_state = 44}, + [914] = {.lex_state = 43}, + [915] = {.lex_state = 43}, + [916] = {.lex_state = 48}, [917] = {.lex_state = 48}, [918] = {.lex_state = 48}, - [919] = {.lex_state = 48}, - [920] = {.lex_state = 42}, - [921] = {.lex_state = 43}, - [922] = {.lex_state = 42}, - [923] = {.lex_state = 43}, - [924] = {.lex_state = 48}, - [925] = {.lex_state = 48}, - [926] = {.lex_state = 44}, - [927] = {.lex_state = 48}, - [928] = {.lex_state = 48}, - [929] = {.lex_state = 43}, + [919] = {.lex_state = 43}, + [920] = {.lex_state = 48}, + [921] = {.lex_state = 45}, + [922] = {.lex_state = 44}, + [923] = {.lex_state = 45}, + [924] = {.lex_state = 42}, + [925] = {.lex_state = 43}, + [926] = {.lex_state = 45}, + [927] = {.lex_state = 43}, + [928] = {.lex_state = 43}, + [929] = {.lex_state = 48}, [930] = {.lex_state = 48}, [931] = {.lex_state = 43}, - [932] = {.lex_state = 45}, - [933] = {.lex_state = 43}, - [934] = {.lex_state = 44}, - [935] = {.lex_state = 43}, - [936] = {.lex_state = 45}, - [937] = {.lex_state = 48}, - [938] = {.lex_state = 43}, + [932] = {.lex_state = 43}, + [933] = {.lex_state = 48}, + [934] = {.lex_state = 43}, + [935] = {.lex_state = 42}, + [936] = {.lex_state = 43}, + [937] = {.lex_state = 43}, + [938] = {.lex_state = 45}, [939] = {.lex_state = 48}, [940] = {.lex_state = 48}, - [941] = {.lex_state = 48}, + [941] = {.lex_state = 44}, [942] = {.lex_state = 43}, [943] = {.lex_state = 43}, [944] = {.lex_state = 43}, - [945] = {.lex_state = 44}, - [946] = {.lex_state = 45}, - [947] = {.lex_state = 44}, - [948] = {.lex_state = 45}, - [949] = {.lex_state = 43}, + [945] = {.lex_state = 48}, + [946] = {.lex_state = 43}, + [947] = {.lex_state = 48}, + [948] = {.lex_state = 42}, + [949] = {.lex_state = 45}, [950] = {.lex_state = 43}, - [951] = {.lex_state = 42}, - [952] = {.lex_state = 43}, - [953] = {.lex_state = 42}, - [954] = {.lex_state = 45}, - [955] = {.lex_state = 43}, - [956] = {.lex_state = 45}, - [957] = {.lex_state = 43}, + [951] = {.lex_state = 43}, + [952] = {.lex_state = 44}, + [953] = {.lex_state = 44}, + [954] = {.lex_state = 43}, + [955] = {.lex_state = 48}, + [956] = {.lex_state = 44}, + [957] = {.lex_state = 45}, [958] = {.lex_state = 43}, - [959] = {.lex_state = 43}, - [960] = {.lex_state = 43}, - [961] = {.lex_state = 45}, - [962] = {.lex_state = 43}, + [959] = {.lex_state = 42}, + [960] = {.lex_state = 45}, + [961] = {.lex_state = 48}, + [962] = {.lex_state = 45}, [963] = {.lex_state = 45}, [964] = {.lex_state = 45}, [965] = {.lex_state = 48}, - [966] = {.lex_state = 44}, + [966] = {.lex_state = 48}, [967] = {.lex_state = 48}, [968] = {.lex_state = 48}, - [969] = {.lex_state = 48}, + [969] = {.lex_state = 45}, [970] = {.lex_state = 43}, - [971] = {.lex_state = 48}, - [972] = {.lex_state = 48}, - [973] = {.lex_state = 45}, - [974] = {.lex_state = 48}, - [975] = {.lex_state = 45}, - [976] = {.lex_state = 43}, - [977] = {.lex_state = 102}, - [978] = {.lex_state = 102}, - [979] = {.lex_state = 102}, - [980] = {.lex_state = 102}, + [971] = {.lex_state = 43}, + [972] = {.lex_state = 44}, + [973] = {.lex_state = 42}, + [974] = {.lex_state = 44}, + [975] = {.lex_state = 48}, + [976] = {.lex_state = 48}, + [977] = {.lex_state = 44}, + [978] = {.lex_state = 45}, + [979] = {.lex_state = 45}, + [980] = {.lex_state = 43}, [981] = {.lex_state = 44}, [982] = {.lex_state = 44}, - [983] = {.lex_state = 44}, - [984] = {.lex_state = 44}, - [985] = {.lex_state = 45}, - [986] = {.lex_state = 44}, - [987] = {.lex_state = 44}, + [983] = {.lex_state = 48}, + [984] = {.lex_state = 48}, + [985] = {.lex_state = 48}, + [986] = {.lex_state = 48}, + [987] = {.lex_state = 43}, [988] = {.lex_state = 44}, - [989] = {.lex_state = 45}, + [989] = {.lex_state = 43}, [990] = {.lex_state = 44}, [991] = {.lex_state = 44}, - [992] = {.lex_state = 45}, + [992] = {.lex_state = 48}, [993] = {.lex_state = 44}, [994] = {.lex_state = 44}, - [995] = {.lex_state = 44}, + [995] = {.lex_state = 102}, [996] = {.lex_state = 44}, [997] = {.lex_state = 44}, [998] = {.lex_state = 44}, @@ -13649,48 +13630,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1001] = {.lex_state = 44}, [1002] = {.lex_state = 44}, [1003] = {.lex_state = 44}, - [1004] = {.lex_state = 44}, + [1004] = {.lex_state = 102}, [1005] = {.lex_state = 44}, - [1006] = {.lex_state = 45}, - [1007] = {.lex_state = 45}, + [1006] = {.lex_state = 44}, + [1007] = {.lex_state = 44}, [1008] = {.lex_state = 44}, [1009] = {.lex_state = 44}, - [1010] = {.lex_state = 45}, - [1011] = {.lex_state = 45}, - [1012] = {.lex_state = 45}, - [1013] = {.lex_state = 45}, - [1014] = {.lex_state = 45}, - [1015] = {.lex_state = 45}, - [1016] = {.lex_state = 45}, - [1017] = {.lex_state = 45}, - [1018] = {.lex_state = 45}, - [1019] = {.lex_state = 45}, - [1020] = {.lex_state = 45}, - [1021] = {.lex_state = 45}, + [1010] = {.lex_state = 44}, + [1011] = {.lex_state = 44}, + [1012] = {.lex_state = 44}, + [1013] = {.lex_state = 44}, + [1014] = {.lex_state = 44}, + [1015] = {.lex_state = 102}, + [1016] = {.lex_state = 44}, + [1017] = {.lex_state = 44}, + [1018] = {.lex_state = 44}, + [1019] = {.lex_state = 44}, + [1020] = {.lex_state = 44}, + [1021] = {.lex_state = 102}, [1022] = {.lex_state = 44}, - [1023] = {.lex_state = 45}, - [1024] = {.lex_state = 45}, - [1025] = {.lex_state = 45}, - [1026] = {.lex_state = 45}, - [1027] = {.lex_state = 45}, - [1028] = {.lex_state = 45}, - [1029] = {.lex_state = 45}, - [1030] = {.lex_state = 45}, + [1023] = {.lex_state = 44}, + [1024] = {.lex_state = 44}, + [1025] = {.lex_state = 44}, + [1026] = {.lex_state = 44}, + [1027] = {.lex_state = 44}, + [1028] = {.lex_state = 44}, + [1029] = {.lex_state = 44}, + [1030] = {.lex_state = 44}, [1031] = {.lex_state = 45}, - [1032] = {.lex_state = 45}, - [1033] = {.lex_state = 45}, + [1032] = {.lex_state = 44}, + [1033] = {.lex_state = 44}, [1034] = {.lex_state = 45}, [1035] = {.lex_state = 45}, [1036] = {.lex_state = 45}, - [1037] = {.lex_state = 45}, - [1038] = {.lex_state = 45}, - [1039] = {.lex_state = 45}, - [1040] = {.lex_state = 45}, + [1037] = {.lex_state = 44}, + [1038] = {.lex_state = 44}, + [1039] = {.lex_state = 44}, + [1040] = {.lex_state = 44}, [1041] = {.lex_state = 45}, - [1042] = {.lex_state = 45}, - [1043] = {.lex_state = 45}, - [1044] = {.lex_state = 45}, - [1045] = {.lex_state = 45}, + [1042] = {.lex_state = 44}, + [1043] = {.lex_state = 44}, + [1044] = {.lex_state = 44}, + [1045] = {.lex_state = 44}, [1046] = {.lex_state = 45}, [1047] = {.lex_state = 45}, [1048] = {.lex_state = 45}, @@ -13708,7 +13689,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 45}, [1061] = {.lex_state = 45}, [1062] = {.lex_state = 45}, - [1063] = {.lex_state = 45}, + [1063] = {.lex_state = 44}, [1064] = {.lex_state = 45}, [1065] = {.lex_state = 45}, [1066] = {.lex_state = 45}, @@ -13735,34 +13716,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1087] = {.lex_state = 45}, [1088] = {.lex_state = 45}, [1089] = {.lex_state = 45}, - [1090] = {.lex_state = 44}, + [1090] = {.lex_state = 45}, [1091] = {.lex_state = 45}, - [1092] = {.lex_state = 44}, + [1092] = {.lex_state = 45}, [1093] = {.lex_state = 45}, - [1094] = {.lex_state = 44}, + [1094] = {.lex_state = 45}, [1095] = {.lex_state = 45}, [1096] = {.lex_state = 45}, - [1097] = {.lex_state = 44}, + [1097] = {.lex_state = 45}, [1098] = {.lex_state = 45}, [1099] = {.lex_state = 45}, - [1100] = {.lex_state = 44}, + [1100] = {.lex_state = 45}, [1101] = {.lex_state = 45}, [1102] = {.lex_state = 45}, - [1103] = {.lex_state = 44}, + [1103] = {.lex_state = 45}, [1104] = {.lex_state = 45}, [1105] = {.lex_state = 45}, [1106] = {.lex_state = 45}, [1107] = {.lex_state = 45}, [1108] = {.lex_state = 45}, - [1109] = {.lex_state = 44}, + [1109] = {.lex_state = 45}, [1110] = {.lex_state = 45}, [1111] = {.lex_state = 45}, [1112] = {.lex_state = 45}, - [1113] = {.lex_state = 44}, + [1113] = {.lex_state = 45}, [1114] = {.lex_state = 45}, - [1115] = {.lex_state = 44}, - [1116] = {.lex_state = 44}, - [1117] = {.lex_state = 44}, + [1115] = {.lex_state = 45}, + [1116] = {.lex_state = 45}, + [1117] = {.lex_state = 45}, [1118] = {.lex_state = 45}, [1119] = {.lex_state = 45}, [1120] = {.lex_state = 45}, @@ -13771,58 +13752,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 45}, [1124] = {.lex_state = 45}, [1125] = {.lex_state = 45}, - [1126] = {.lex_state = 45}, + [1126] = {.lex_state = 44}, [1127] = {.lex_state = 45}, [1128] = {.lex_state = 45}, [1129] = {.lex_state = 45}, [1130] = {.lex_state = 45}, - [1131] = {.lex_state = 45}, + [1131] = {.lex_state = 44}, [1132] = {.lex_state = 45}, [1133] = {.lex_state = 45}, [1134] = {.lex_state = 45}, [1135] = {.lex_state = 45}, [1136] = {.lex_state = 45}, [1137] = {.lex_state = 45}, - [1138] = {.lex_state = 44}, - [1139] = {.lex_state = 45}, - [1140] = {.lex_state = 44}, - [1141] = {.lex_state = 44}, - [1142] = {.lex_state = 44}, - [1143] = {.lex_state = 44}, - [1144] = {.lex_state = 44}, - [1145] = {.lex_state = 44}, - [1146] = {.lex_state = 44}, - [1147] = {.lex_state = 44}, + [1138] = {.lex_state = 45}, + [1139] = {.lex_state = 44}, + [1140] = {.lex_state = 45}, + [1141] = {.lex_state = 45}, + [1142] = {.lex_state = 45}, + [1143] = {.lex_state = 45}, + [1144] = {.lex_state = 45}, + [1145] = {.lex_state = 45}, + [1146] = {.lex_state = 45}, + [1147] = {.lex_state = 45}, [1148] = {.lex_state = 44}, - [1149] = {.lex_state = 44}, - [1150] = {.lex_state = 44}, - [1151] = {.lex_state = 44}, - [1152] = {.lex_state = 44}, - [1153] = {.lex_state = 44}, - [1154] = {.lex_state = 44}, - [1155] = {.lex_state = 44}, - [1156] = {.lex_state = 44}, - [1157] = {.lex_state = 44}, - [1158] = {.lex_state = 44}, - [1159] = {.lex_state = 44}, - [1160] = {.lex_state = 44}, - [1161] = {.lex_state = 44}, - [1162] = {.lex_state = 44}, - [1163] = {.lex_state = 44}, - [1164] = {.lex_state = 44}, - [1165] = {.lex_state = 44}, + [1149] = {.lex_state = 45}, + [1150] = {.lex_state = 45}, + [1151] = {.lex_state = 45}, + [1152] = {.lex_state = 45}, + [1153] = {.lex_state = 45}, + [1154] = {.lex_state = 45}, + [1155] = {.lex_state = 45}, + [1156] = {.lex_state = 45}, + [1157] = {.lex_state = 45}, + [1158] = {.lex_state = 45}, + [1159] = {.lex_state = 45}, + [1160] = {.lex_state = 45}, + [1161] = {.lex_state = 45}, + [1162] = {.lex_state = 45}, + [1163] = {.lex_state = 45}, + [1164] = {.lex_state = 45}, + [1165] = {.lex_state = 45}, [1166] = {.lex_state = 45}, - [1167] = {.lex_state = 44}, + [1167] = {.lex_state = 45}, [1168] = {.lex_state = 44}, [1169] = {.lex_state = 44}, [1170] = {.lex_state = 44}, [1171] = {.lex_state = 44}, [1172] = {.lex_state = 44}, - [1173] = {.lex_state = 45}, + [1173] = {.lex_state = 44}, [1174] = {.lex_state = 44}, [1175] = {.lex_state = 44}, [1176] = {.lex_state = 44}, - [1177] = {.lex_state = 44}, + [1177] = {.lex_state = 45}, [1178] = {.lex_state = 44}, [1179] = {.lex_state = 44}, [1180] = {.lex_state = 44}, @@ -13845,15 +13826,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 44}, [1198] = {.lex_state = 44}, [1199] = {.lex_state = 44}, - [1200] = {.lex_state = 41}, + [1200] = {.lex_state = 44}, [1201] = {.lex_state = 44}, [1202] = {.lex_state = 44}, [1203] = {.lex_state = 44}, [1204] = {.lex_state = 44}, [1205] = {.lex_state = 44}, [1206] = {.lex_state = 44}, - [1207] = {.lex_state = 44}, - [1208] = {.lex_state = 41}, + [1207] = {.lex_state = 45}, + [1208] = {.lex_state = 44}, [1209] = {.lex_state = 44}, [1210] = {.lex_state = 44}, [1211] = {.lex_state = 44}, @@ -13866,80 +13847,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 44}, [1219] = {.lex_state = 44}, [1220] = {.lex_state = 44}, - [1221] = {.lex_state = 23}, + [1221] = {.lex_state = 44}, [1222] = {.lex_state = 44}, [1223] = {.lex_state = 44}, [1224] = {.lex_state = 44}, [1225] = {.lex_state = 44}, - [1226] = {.lex_state = 44}, + [1226] = {.lex_state = 41}, [1227] = {.lex_state = 44}, [1228] = {.lex_state = 44}, - [1229] = {.lex_state = 44}, + [1229] = {.lex_state = 23}, [1230] = {.lex_state = 41}, [1231] = {.lex_state = 44}, - [1232] = {.lex_state = 41}, + [1232] = {.lex_state = 44}, [1233] = {.lex_state = 44}, - [1234] = {.lex_state = 41}, - [1235] = {.lex_state = 41}, - [1236] = {.lex_state = 41}, + [1234] = {.lex_state = 44}, + [1235] = {.lex_state = 44}, + [1236] = {.lex_state = 44}, [1237] = {.lex_state = 44}, - [1238] = {.lex_state = 44}, + [1238] = {.lex_state = 41}, [1239] = {.lex_state = 41}, [1240] = {.lex_state = 41}, [1241] = {.lex_state = 41}, [1242] = {.lex_state = 41}, [1243] = {.lex_state = 41}, [1244] = {.lex_state = 41}, - [1245] = {.lex_state = 41}, + [1245] = {.lex_state = 44}, [1246] = {.lex_state = 41}, [1247] = {.lex_state = 41}, - [1248] = {.lex_state = 44}, + [1248] = {.lex_state = 41}, [1249] = {.lex_state = 41}, - [1250] = {.lex_state = 44}, - [1251] = {.lex_state = 44}, + [1250] = {.lex_state = 41}, + [1251] = {.lex_state = 41}, [1252] = {.lex_state = 41}, [1253] = {.lex_state = 41}, [1254] = {.lex_state = 41}, - [1255] = {.lex_state = 44}, + [1255] = {.lex_state = 41}, [1256] = {.lex_state = 41}, - [1257] = {.lex_state = 41}, - [1258] = {.lex_state = 41}, - [1259] = {.lex_state = 41}, + [1257] = {.lex_state = 44}, + [1258] = {.lex_state = 44}, + [1259] = {.lex_state = 44}, [1260] = {.lex_state = 44}, - [1261] = {.lex_state = 41}, - [1262] = {.lex_state = 41}, + [1261] = {.lex_state = 44}, + [1262] = {.lex_state = 44}, [1263] = {.lex_state = 44}, - [1264] = {.lex_state = 41}, - [1265] = {.lex_state = 44}, + [1264] = {.lex_state = 44}, + [1265] = {.lex_state = 41}, [1266] = {.lex_state = 41}, [1267] = {.lex_state = 41}, - [1268] = {.lex_state = 41}, + [1268] = {.lex_state = 44}, [1269] = {.lex_state = 44}, - [1270] = {.lex_state = 41}, + [1270] = {.lex_state = 44}, [1271] = {.lex_state = 44}, - [1272] = {.lex_state = 41}, - [1273] = {.lex_state = 44}, + [1272] = {.lex_state = 44}, + [1273] = {.lex_state = 41}, [1274] = {.lex_state = 41}, [1275] = {.lex_state = 41}, [1276] = {.lex_state = 41}, - [1277] = {.lex_state = 44}, + [1277] = {.lex_state = 41}, [1278] = {.lex_state = 44}, [1279] = {.lex_state = 44}, [1280] = {.lex_state = 44}, [1281] = {.lex_state = 41}, - [1282] = {.lex_state = 44}, - [1283] = {.lex_state = 44}, - [1284] = {.lex_state = 44}, - [1285] = {.lex_state = 41}, + [1282] = {.lex_state = 41}, + [1283] = {.lex_state = 41}, + [1284] = {.lex_state = 41}, + [1285] = {.lex_state = 44}, [1286] = {.lex_state = 41}, - [1287] = {.lex_state = 44}, - [1288] = {.lex_state = 44}, - [1289] = {.lex_state = 44}, - [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 23}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 44}, - [1294] = {.lex_state = 23}, + [1287] = {.lex_state = 41}, + [1288] = {.lex_state = 41}, + [1289] = {.lex_state = 41}, + [1290] = {.lex_state = 41}, + [1291] = {.lex_state = 44}, + [1292] = {.lex_state = 44}, + [1293] = {.lex_state = 41}, + [1294] = {.lex_state = 44}, [1295] = {.lex_state = 23}, [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, @@ -13954,12 +13935,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 23}, [1307] = {.lex_state = 23}, [1308] = {.lex_state = 23}, - [1309] = {.lex_state = 23}, + [1309] = {.lex_state = 44}, [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 23}, + [1311] = {.lex_state = 44}, [1312] = {.lex_state = 23}, [1313] = {.lex_state = 23}, - [1314] = {.lex_state = 44}, + [1314] = {.lex_state = 23}, [1315] = {.lex_state = 23}, [1316] = {.lex_state = 23}, [1317] = {.lex_state = 23}, @@ -13967,11 +13948,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1319] = {.lex_state = 23}, [1320] = {.lex_state = 23}, [1321] = {.lex_state = 23}, - [1322] = {.lex_state = 44}, - [1323] = {.lex_state = 44}, - [1324] = {.lex_state = 44}, - [1325] = {.lex_state = 44}, - [1326] = {.lex_state = 44}, + [1322] = {.lex_state = 23}, + [1323] = {.lex_state = 23}, + [1324] = {.lex_state = 23}, + [1325] = {.lex_state = 23}, + [1326] = {.lex_state = 23}, [1327] = {.lex_state = 44}, [1328] = {.lex_state = 44}, [1329] = {.lex_state = 44}, @@ -13986,253 +13967,253 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1338] = {.lex_state = 44}, [1339] = {.lex_state = 44}, [1340] = {.lex_state = 44}, - [1341] = {.lex_state = 44}, + [1341] = {.lex_state = 102}, [1342] = {.lex_state = 44}, [1343] = {.lex_state = 44}, [1344] = {.lex_state = 44}, [1345] = {.lex_state = 44}, - [1346] = {.lex_state = 102}, + [1346] = {.lex_state = 44}, [1347] = {.lex_state = 102}, [1348] = {.lex_state = 44}, - [1349] = {.lex_state = 44}, + [1349] = {.lex_state = 102}, [1350] = {.lex_state = 44}, [1351] = {.lex_state = 44}, [1352] = {.lex_state = 44}, - [1353] = {.lex_state = 44}, - [1354] = {.lex_state = 102}, - [1355] = {.lex_state = 44}, - [1356] = {.lex_state = 102}, - [1357] = {.lex_state = 102}, + [1353] = {.lex_state = 102}, + [1354] = {.lex_state = 44}, + [1355] = {.lex_state = 102}, + [1356] = {.lex_state = 44}, + [1357] = {.lex_state = 44}, [1358] = {.lex_state = 44}, - [1359] = {.lex_state = 42}, + [1359] = {.lex_state = 44}, [1360] = {.lex_state = 44}, [1361] = {.lex_state = 44}, [1362] = {.lex_state = 44}, [1363] = {.lex_state = 102}, [1364] = {.lex_state = 44}, - [1365] = {.lex_state = 42}, + [1365] = {.lex_state = 44}, [1366] = {.lex_state = 44}, - [1367] = {.lex_state = 44}, + [1367] = {.lex_state = 102}, [1368] = {.lex_state = 44}, - [1369] = {.lex_state = 44}, + [1369] = {.lex_state = 42}, [1370] = {.lex_state = 44}, [1371] = {.lex_state = 44}, [1372] = {.lex_state = 44}, - [1373] = {.lex_state = 44}, - [1374] = {.lex_state = 44}, + [1373] = {.lex_state = 102}, + [1374] = {.lex_state = 42}, [1375] = {.lex_state = 44}, - [1376] = {.lex_state = 44}, - [1377] = {.lex_state = 102}, + [1376] = {.lex_state = 102}, + [1377] = {.lex_state = 44}, [1378] = {.lex_state = 44}, - [1379] = {.lex_state = 44}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 102}, [1381] = {.lex_state = 102}, - [1382] = {.lex_state = 44}, + [1382] = {.lex_state = 102}, [1383] = {.lex_state = 102}, [1384] = {.lex_state = 44}, [1385] = {.lex_state = 44}, [1386] = {.lex_state = 102}, [1387] = {.lex_state = 102}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 102}, + [1388] = {.lex_state = 44}, + [1389] = {.lex_state = 44}, [1390] = {.lex_state = 102}, - [1391] = {.lex_state = 102}, - [1392] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 102}, [1393] = {.lex_state = 102}, - [1394] = {.lex_state = 44}, + [1394] = {.lex_state = 46}, [1395] = {.lex_state = 102}, [1396] = {.lex_state = 102}, [1397] = {.lex_state = 102}, - [1398] = {.lex_state = 102}, + [1398] = {.lex_state = 46}, [1399] = {.lex_state = 102}, [1400] = {.lex_state = 102}, - [1401] = {.lex_state = 46}, + [1401] = {.lex_state = 102}, [1402] = {.lex_state = 102}, [1403] = {.lex_state = 102}, [1404] = {.lex_state = 102}, - [1405] = {.lex_state = 46}, + [1405] = {.lex_state = 102}, [1406] = {.lex_state = 102}, [1407] = {.lex_state = 102}, [1408] = {.lex_state = 102}, [1409] = {.lex_state = 102}, [1410] = {.lex_state = 102}, [1411] = {.lex_state = 102}, - [1412] = {.lex_state = 102}, + [1412] = {.lex_state = 46}, [1413] = {.lex_state = 102}, [1414] = {.lex_state = 102}, - [1415] = {.lex_state = 102}, - [1416] = {.lex_state = 46}, + [1415] = {.lex_state = 46}, + [1416] = {.lex_state = 102}, [1417] = {.lex_state = 46}, [1418] = {.lex_state = 102}, [1419] = {.lex_state = 102}, - [1420] = {.lex_state = 46}, + [1420] = {.lex_state = 102}, [1421] = {.lex_state = 102}, [1422] = {.lex_state = 102}, - [1423] = {.lex_state = 102}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 102}, - [1425] = {.lex_state = 102}, - [1426] = {.lex_state = 0}, + [1425] = {.lex_state = 44}, + [1426] = {.lex_state = 44}, [1427] = {.lex_state = 102}, [1428] = {.lex_state = 44}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 102}, - [1431] = {.lex_state = 44}, + [1429] = {.lex_state = 44}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 102}, [1432] = {.lex_state = 102}, - [1433] = {.lex_state = 44}, + [1433] = {.lex_state = 102}, [1434] = {.lex_state = 44}, - [1435] = {.lex_state = 102}, - [1436] = {.lex_state = 44}, + [1435] = {.lex_state = 44}, + [1436] = {.lex_state = 102}, [1437] = {.lex_state = 44}, [1438] = {.lex_state = 102}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 102}, [1441] = {.lex_state = 102}, [1442] = {.lex_state = 102}, - [1443] = {.lex_state = 44}, - [1444] = {.lex_state = 102}, - [1445] = {.lex_state = 44}, + [1443] = {.lex_state = 102}, + [1444] = {.lex_state = 44}, + [1445] = {.lex_state = 102}, [1446] = {.lex_state = 102}, [1447] = {.lex_state = 102}, [1448] = {.lex_state = 102}, - [1449] = {.lex_state = 102}, - [1450] = {.lex_state = 102}, - [1451] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 102}, [1452] = {.lex_state = 102}, - [1453] = {.lex_state = 102}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 102}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 102}, + [1455] = {.lex_state = 44}, [1456] = {.lex_state = 102}, - [1457] = {.lex_state = 0}, + [1457] = {.lex_state = 102}, [1458] = {.lex_state = 102}, [1459] = {.lex_state = 102}, [1460] = {.lex_state = 102}, [1461] = {.lex_state = 102}, [1462] = {.lex_state = 102}, - [1463] = {.lex_state = 44}, - [1464] = {.lex_state = 44}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 102}, + [1463] = {.lex_state = 102}, + [1464] = {.lex_state = 102}, + [1465] = {.lex_state = 102}, + [1466] = {.lex_state = 0}, [1467] = {.lex_state = 102}, - [1468] = {.lex_state = 102}, + [1468] = {.lex_state = 44}, [1469] = {.lex_state = 102}, [1470] = {.lex_state = 102}, - [1471] = {.lex_state = 102}, - [1472] = {.lex_state = 102}, + [1471] = {.lex_state = 44}, + [1472] = {.lex_state = 0}, [1473] = {.lex_state = 102}, - [1474] = {.lex_state = 44}, + [1474] = {.lex_state = 102}, [1475] = {.lex_state = 102}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 44}, + [1476] = {.lex_state = 102}, + [1477] = {.lex_state = 102}, [1478] = {.lex_state = 102}, - [1479] = {.lex_state = 102}, - [1480] = {.lex_state = 44}, - [1481] = {.lex_state = 44}, + [1479] = {.lex_state = 44}, + [1480] = {.lex_state = 102}, + [1481] = {.lex_state = 102}, [1482] = {.lex_state = 102}, - [1483] = {.lex_state = 44}, + [1483] = {.lex_state = 102}, [1484] = {.lex_state = 44}, - [1485] = {.lex_state = 44}, + [1485] = {.lex_state = 37}, [1486] = {.lex_state = 44}, [1487] = {.lex_state = 44}, - [1488] = {.lex_state = 102}, - [1489] = {.lex_state = 102}, + [1488] = {.lex_state = 44}, + [1489] = {.lex_state = 44}, [1490] = {.lex_state = 102}, - [1491] = {.lex_state = 102}, - [1492] = {.lex_state = 102}, + [1491] = {.lex_state = 44}, + [1492] = {.lex_state = 44}, [1493] = {.lex_state = 44}, [1494] = {.lex_state = 44}, [1495] = {.lex_state = 44}, [1496] = {.lex_state = 44}, [1497] = {.lex_state = 102}, [1498] = {.lex_state = 102}, - [1499] = {.lex_state = 37}, - [1500] = {.lex_state = 102}, - [1501] = {.lex_state = 44}, - [1502] = {.lex_state = 102}, - [1503] = {.lex_state = 44}, - [1504] = {.lex_state = 102}, + [1499] = {.lex_state = 102}, + [1500] = {.lex_state = 44}, + [1501] = {.lex_state = 102}, + [1502] = {.lex_state = 44}, + [1503] = {.lex_state = 26}, + [1504] = {.lex_state = 26}, [1505] = {.lex_state = 26}, - [1506] = {.lex_state = 26}, - [1507] = {.lex_state = 26}, - [1508] = {.lex_state = 44}, + [1506] = {.lex_state = 28}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 26}, [1509] = {.lex_state = 28}, [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, + [1511] = {.lex_state = 28}, + [1512] = {.lex_state = 44}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 102}, - [1515] = {.lex_state = 44}, - [1516] = {.lex_state = 28}, - [1517] = {.lex_state = 28}, - [1518] = {.lex_state = 26}, - [1519] = {.lex_state = 28}, - [1520] = {.lex_state = 26}, + [1515] = {.lex_state = 37}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 44}, + [1519] = {.lex_state = 26}, + [1520] = {.lex_state = 44}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 26}, - [1524] = {.lex_state = 37}, - [1525] = {.lex_state = 28}, - [1526] = {.lex_state = 44}, - [1527] = {.lex_state = 28}, - [1528] = {.lex_state = 26}, + [1522] = {.lex_state = 26}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 28}, + [1525] = {.lex_state = 26}, + [1526] = {.lex_state = 26}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 28}, [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 28}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 26}, - [1534] = {.lex_state = 26}, - [1535] = {.lex_state = 23}, - [1536] = {.lex_state = 23}, + [1530] = {.lex_state = 28}, + [1531] = {.lex_state = 26}, + [1532] = {.lex_state = 28}, + [1533] = {.lex_state = 37}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, + [1543] = {.lex_state = 102}, [1544] = {.lex_state = 0}, [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, + [1546] = {.lex_state = 44}, [1547] = {.lex_state = 0}, [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 102}, + [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 44}, + [1551] = {.lex_state = 0}, [1552] = {.lex_state = 0}, [1553] = {.lex_state = 0}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, + [1555] = {.lex_state = 23}, [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 23}, - [1558] = {.lex_state = 102}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 37}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 44}, + [1563] = {.lex_state = 0}, [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, + [1565] = {.lex_state = 37}, + [1566] = {.lex_state = 37}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 37}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, + [1574] = {.lex_state = 23}, [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 37}, + [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 44}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 23}, + [1583] = {.lex_state = 44}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, + [1587] = {.lex_state = 44}, [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, @@ -14240,258 +14221,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 37}, - [1596] = {.lex_state = 44}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, + [1599] = {.lex_state = 102}, [1600] = {.lex_state = 44}, - [1601] = {.lex_state = 37}, - [1602] = {.lex_state = 0}, + [1601] = {.lex_state = 44}, + [1602] = {.lex_state = 37}, [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 44}, + [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 23}, + [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 44}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 23}, + [1613] = {.lex_state = 37}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 37}, + [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 37}, + [1618] = {.lex_state = 44}, + [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, + [1621] = {.lex_state = 37}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, + [1625] = {.lex_state = 44}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 37}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, + [1629] = {.lex_state = 23}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 44}, + [1632] = {.lex_state = 23}, [1633] = {.lex_state = 44}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 44}, - [1637] = {.lex_state = 0}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 102}, [1638] = {.lex_state = 0}, [1639] = {.lex_state = 102}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 102}, - [1642] = {.lex_state = 0}, + [1640] = {.lex_state = 102}, + [1641] = {.lex_state = 27}, + [1642] = {.lex_state = 44}, [1643] = {.lex_state = 27}, - [1644] = {.lex_state = 37}, - [1645] = {.lex_state = 27}, - [1646] = {.lex_state = 27}, - [1647] = {.lex_state = 30}, - [1648] = {.lex_state = 102}, - [1649] = {.lex_state = 102}, - [1650] = {.lex_state = 102}, + [1644] = {.lex_state = 102}, + [1645] = {.lex_state = 102}, + [1646] = {.lex_state = 30}, + [1647] = {.lex_state = 0}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 44}, + [1650] = {.lex_state = 0}, [1651] = {.lex_state = 44}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 102}, - [1654] = {.lex_state = 102}, - [1655] = {.lex_state = 30}, - [1656] = {.lex_state = 0}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 27}, + [1656] = {.lex_state = 27}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 102}, - [1659] = {.lex_state = 44}, - [1660] = {.lex_state = 27}, - [1661] = {.lex_state = 27}, + [1659] = {.lex_state = 27}, + [1660] = {.lex_state = 44}, + [1661] = {.lex_state = 0}, [1662] = {.lex_state = 102}, - [1663] = {.lex_state = 102}, - [1664] = {.lex_state = 102}, - [1665] = {.lex_state = 44}, - [1666] = {.lex_state = 37}, - [1667] = {.lex_state = 102}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 37}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 27}, + [1668] = {.lex_state = 27}, + [1669] = {.lex_state = 27}, [1670] = {.lex_state = 102}, [1671] = {.lex_state = 102}, [1672] = {.lex_state = 102}, - [1673] = {.lex_state = 102}, - [1674] = {.lex_state = 44}, - [1675] = {.lex_state = 37}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 27}, + [1675] = {.lex_state = 0}, + [1676] = {.lex_state = 102}, + [1677] = {.lex_state = 102}, [1678] = {.lex_state = 102}, - [1679] = {.lex_state = 102}, - [1680] = {.lex_state = 27}, + [1679] = {.lex_state = 44}, + [1680] = {.lex_state = 37}, [1681] = {.lex_state = 0}, [1682] = {.lex_state = 102}, [1683] = {.lex_state = 27}, - [1684] = {.lex_state = 102}, - [1685] = {.lex_state = 27}, - [1686] = {.lex_state = 27}, + [1684] = {.lex_state = 27}, + [1685] = {.lex_state = 102}, + [1686] = {.lex_state = 0}, [1687] = {.lex_state = 102}, - [1688] = {.lex_state = 27}, - [1689] = {.lex_state = 44}, + [1688] = {.lex_state = 44}, + [1689] = {.lex_state = 30}, [1690] = {.lex_state = 44}, - [1691] = {.lex_state = 44}, - [1692] = {.lex_state = 0}, + [1691] = {.lex_state = 27}, + [1692] = {.lex_state = 37}, [1693] = {.lex_state = 27}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, + [1694] = {.lex_state = 102}, + [1695] = {.lex_state = 102}, + [1696] = {.lex_state = 27}, [1697] = {.lex_state = 27}, - [1698] = {.lex_state = 27}, - [1699] = {.lex_state = 44}, - [1700] = {.lex_state = 102}, - [1701] = {.lex_state = 27}, + [1698] = {.lex_state = 102}, + [1699] = {.lex_state = 30}, + [1700] = {.lex_state = 27}, + [1701] = {.lex_state = 102}, [1702] = {.lex_state = 27}, - [1703] = {.lex_state = 30}, - [1704] = {.lex_state = 27}, - [1705] = {.lex_state = 0}, + [1703] = {.lex_state = 102}, + [1704] = {.lex_state = 44}, + [1705] = {.lex_state = 102}, [1706] = {.lex_state = 27}, - [1707] = {.lex_state = 27}, + [1707] = {.lex_state = 102}, [1708] = {.lex_state = 27}, - [1709] = {.lex_state = 44}, - [1710] = {.lex_state = 27}, + [1709] = {.lex_state = 27}, + [1710] = {.lex_state = 44}, [1711] = {.lex_state = 102}, - [1712] = {.lex_state = 102}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 27}, - [1715] = {.lex_state = 23}, - [1716] = {.lex_state = 0}, + [1712] = {.lex_state = 27}, + [1713] = {.lex_state = 36}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 44}, + [1716] = {.lex_state = 44}, [1717] = {.lex_state = 23}, - [1718] = {.lex_state = 0}, + [1718] = {.lex_state = 102}, [1719] = {.lex_state = 23}, [1720] = {.lex_state = 23}, [1721] = {.lex_state = 23}, - [1722] = {.lex_state = 0}, + [1722] = {.lex_state = 23}, [1723] = {.lex_state = 23}, - [1724] = {.lex_state = 23}, + [1724] = {.lex_state = 44}, [1725] = {.lex_state = 23}, [1726] = {.lex_state = 44}, [1727] = {.lex_state = 44}, - [1728] = {.lex_state = 44}, - [1729] = {.lex_state = 36}, - [1730] = {.lex_state = 44}, - [1731] = {.lex_state = 36}, + [1728] = {.lex_state = 23}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 0}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 36}, + [1733] = {.lex_state = 23}, + [1734] = {.lex_state = 0}, [1735] = {.lex_state = 36}, [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 23}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 23}, + [1737] = {.lex_state = 36}, + [1738] = {.lex_state = 23}, + [1739] = {.lex_state = 36}, [1740] = {.lex_state = 23}, [1741] = {.lex_state = 23}, [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 44}, - [1744] = {.lex_state = 36}, + [1743] = {.lex_state = 36}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 36}, - [1746] = {.lex_state = 23}, + [1746] = {.lex_state = 36}, [1747] = {.lex_state = 36}, [1748] = {.lex_state = 23}, - [1749] = {.lex_state = 23}, - [1750] = {.lex_state = 0}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 44}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 44}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 44}, - [1757] = {.lex_state = 36}, - [1758] = {.lex_state = 44}, + [1752] = {.lex_state = 36}, + [1753] = {.lex_state = 36}, + [1754] = {.lex_state = 44}, + [1755] = {.lex_state = 36}, + [1756] = {.lex_state = 23}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, + [1765] = {.lex_state = 23}, + [1766] = {.lex_state = 102}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 36}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 23}, + [1769] = {.lex_state = 44}, + [1770] = {.lex_state = 0}, [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 36}, - [1778] = {.lex_state = 23}, - [1779] = {.lex_state = 0}, + [1777] = {.lex_state = 23}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 102}, [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 44}, + [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 36}, [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 44}, + [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, [1790] = {.lex_state = 36}, [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, + [1792] = {.lex_state = 36}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 36}, - [1796] = {.lex_state = 102}, + [1794] = {.lex_state = 44}, + [1795] = {.lex_state = 102}, + [1796] = {.lex_state = 0}, [1797] = {.lex_state = 44}, - [1798] = {.lex_state = 44}, + [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 23}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 44}, - [1808] = {.lex_state = 44}, - [1809] = {.lex_state = 102}, + [1800] = {.lex_state = 36}, + [1801] = {.lex_state = 36}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 44}, + [1804] = {.lex_state = 36}, + [1805] = {.lex_state = 44}, + [1806] = {.lex_state = 44}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 36}, + [1809] = {.lex_state = 36}, [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 44}, + [1812] = {.lex_state = 36}, + [1813] = {.lex_state = 23}, + [1814] = {.lex_state = 44}, + [1815] = {.lex_state = 23}, + [1816] = {.lex_state = 36}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 23}, + [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 23}, + [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 36}, - [1823] = {.lex_state = 36}, - [1824] = {.lex_state = 23}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 44}, + [1823] = {.lex_state = 23}, + [1824] = {.lex_state = 44}, + [1825] = {.lex_state = 23}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, + [1828] = {.lex_state = 44}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 44}, + [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, + [1836] = {.lex_state = 23}, + [1837] = {.lex_state = 36}, [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 102}, - [1842] = {.lex_state = 102}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 44}, + [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 36}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 23}, [1849] = {.lex_state = 0}, @@ -14499,82 +14480,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1851] = {.lex_state = 0}, [1852] = {.lex_state = 23}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 0}, + [1854] = {.lex_state = 23}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 23}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 44}, - [1859] = {.lex_state = 44}, + [1856] = {.lex_state = 44}, + [1857] = {.lex_state = 44}, + [1858] = {.lex_state = 23}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 36}, - [1861] = {.lex_state = 36}, + [1861] = {.lex_state = 44}, [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 36}, - [1864] = {.lex_state = 36}, - [1865] = {.lex_state = 44}, - [1866] = {.lex_state = 44}, + [1863] = {.lex_state = 44}, + [1864] = {.lex_state = 23}, + [1865] = {.lex_state = 36}, + [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 44}, - [1869] = {.lex_state = 36}, - [1870] = {.lex_state = 23}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 44}, + [1868] = {.lex_state = 23}, + [1869] = {.lex_state = 23}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 44}, + [1872] = {.lex_state = 36}, + [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 36}, - [1877] = {.lex_state = 36}, + [1875] = {.lex_state = 36}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 23}, + [1879] = {.lex_state = 36}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 36}, - [1882] = {.lex_state = 23}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 36}, + [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 36}, - [1891] = {.lex_state = 0}, + [1890] = {.lex_state = 44}, + [1891] = {.lex_state = 44}, [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 23}, - [1894] = {.lex_state = 0}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 44}, [1895] = {.lex_state = 44}, - [1896] = {.lex_state = 44}, - [1897] = {.lex_state = 44}, - [1898] = {.lex_state = 36}, - [1899] = {.lex_state = 23}, - [1900] = {.lex_state = 23}, - [1901] = {.lex_state = 44}, - [1902] = {.lex_state = 102}, - [1903] = {.lex_state = 44}, - [1904] = {.lex_state = 0}, + [1896] = {.lex_state = 36}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 0}, + [1899] = {.lex_state = 44}, + [1900] = {.lex_state = 0}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 36}, + [1903] = {.lex_state = 36}, + [1904] = {.lex_state = 44}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 36}, [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 36}, + [1908] = {.lex_state = 44}, + [1909] = {.lex_state = 0}, [1910] = {.lex_state = 44}, - [1911] = {.lex_state = 0}, + [1911] = {.lex_state = 44}, [1912] = {.lex_state = 44}, - [1913] = {.lex_state = 44}, - [1914] = {.lex_state = 44}, - [1915] = {.lex_state = 23}, - [1916] = {.lex_state = 102}, - [1917] = {.lex_state = 36}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 36}, - [1920] = {.lex_state = 0}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 36}, + [1919] = {.lex_state = 44}, + [1920] = {.lex_state = 44}, [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 44}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, + [1922] = {.lex_state = 36}, + [1923] = {.lex_state = 44}, + [1924] = {.lex_state = 23}, + [1925] = {.lex_state = 36}, + [1926] = {.lex_state = 44}, + [1927] = {.lex_state = 36}, + [1928] = {.lex_state = 44}, + [1929] = {.lex_state = 36}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, @@ -14582,68 +14563,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 44}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 102}, - [1940] = {.lex_state = 0}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 44}, [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 23}, - [1943] = {.lex_state = 36}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 44}, - [1946] = {.lex_state = 44}, - [1947] = {.lex_state = 102}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 0}, + [1944] = {.lex_state = 44}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 44}, [1948] = {.lex_state = 36}, - [1949] = {.lex_state = 23}, + [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 36}, [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 36}, + [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 23}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 102}, - [1958] = {.lex_state = 44}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 44}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 23}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 36}, + [1959] = {.lex_state = 23}, + [1960] = {.lex_state = 0}, + [1961] = {.lex_state = 23}, + [1962] = {.lex_state = 44}, [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 44}, + [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, + [1968] = {.lex_state = 102}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 36}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 36}, - [1973] = {.lex_state = 36}, + [1970] = {.lex_state = 102}, + [1971] = {.lex_state = 44}, + [1972] = {.lex_state = 0}, + [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 36}, - [1979] = {.lex_state = 44}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 36}, - [1982] = {.lex_state = 102}, - [1983] = {.lex_state = 36}, + [1975] = {.lex_state = 102}, + [1976] = {.lex_state = 36}, + [1977] = {.lex_state = 44}, + [1978] = {.lex_state = 0}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 102}, + [1981] = {.lex_state = 23}, + [1982] = {.lex_state = 23}, + [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0}, + [1985] = {.lex_state = 102}, [1986] = {.lex_state = 0}, [1987] = {.lex_state = 102}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 44}, - [1992] = {.lex_state = 36}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 44}, + [1990] = {.lex_state = 102}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 0}, + [1993] = {.lex_state = 44}, + [1994] = {.lex_state = 102}, + [1995] = {.lex_state = 102}, [1996] = {.lex_state = 102}, - [1997] = {.lex_state = 102}, - [1998] = {.lex_state = 102}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14707,6 +14686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___unaligned] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -14723,10 +14706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1), [anon_sym__Noreturn] = ACTIONS(1), [anon_sym_noreturn] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [anon_sym_unsigned] = ACTIONS(1), - [anon_sym_long] = ACTIONS(1), - [anon_sym_short] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), @@ -14782,7 +14761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1850), + [sym_translation_unit] = STATE(1963), [sym_preproc_include] = STATE(52), [sym_preproc_def] = STATE(52), [sym_preproc_function_def] = STATE(52), @@ -14792,21 +14771,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(52), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1343), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1345), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(813), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1030), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -14820,34 +14799,34 @@ 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(1173), - [sym__expression_not_binary] = STATE(1166), - [sym_conditional_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1166), + [sym__expression] = STATE(1177), + [sym__expression_not_binary] = STATE(1207), + [sym_conditional_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1207), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1166), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(1166), - [sym_cast_expression] = STATE(1166), - [sym_sizeof_expression] = STATE(1166), - [sym_offsetof_expression] = STATE(1166), - [sym_generic_expression] = STATE(1166), + [sym_unary_expression] = STATE(1207), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(1207), + [sym_cast_expression] = STATE(1207), + [sym_sizeof_expression] = STATE(1207), + [sym_offsetof_expression] = STATE(1207), + [sym_generic_expression] = STATE(1207), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1166), + [sym_gnu_asm_expression] = STATE(1207), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1166), + [sym_compound_literal_expression] = STATE(1207), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1166), - [sym_concatenated_string] = STATE(1166), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(1166), + [sym_char_literal] = STATE(1207), + [sym_concatenated_string] = STATE(1207), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(1207), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -14875,23 +14854,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -14932,75 +14911,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1890), - [sym_preproc_elif] = STATE(1890), - [sym_preproc_elifdef] = STATE(1890), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [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(1816), + [sym_preproc_elif] = STATE(1816), + [sym_preproc_elifdef] = STATE(1816), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15033,23 +15012,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15090,75 +15069,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1823), - [sym_preproc_elif] = STATE(1823), - [sym_preproc_elifdef] = STATE(1823), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [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(1865), + [sym_preproc_elif] = STATE(1865), + [sym_preproc_elifdef] = STATE(1865), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15191,23 +15170,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15248,75 +15227,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(7), - [sym_preproc_def] = STATE(7), - [sym_preproc_function_def] = STATE(7), - [sym_preproc_call] = STATE(7), - [sym_preproc_if] = STATE(7), - [sym_preproc_ifdef] = STATE(7), - [sym_preproc_else] = STATE(1886), - [sym_preproc_elif] = STATE(1886), - [sym_preproc_elifdef] = STATE(1886), - [sym_function_definition] = STATE(7), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(819), + [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(1951), + [sym_preproc_elif] = STATE(1951), + [sym_preproc_elifdef] = STATE(1951), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15349,23 +15328,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15406,75 +15385,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1768), - [sym_preproc_elif] = STATE(1768), - [sym_preproc_elifdef] = STATE(1768), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [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(1976), + [sym_preproc_elif] = STATE(1976), + [sym_preproc_elifdef] = STATE(1976), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15507,23 +15486,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15564,75 +15543,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_call] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1745), - [sym_preproc_elif] = STATE(1745), - [sym_preproc_elifdef] = STATE(1745), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1918), + [sym_preproc_elif] = STATE(1918), + [sym_preproc_elifdef] = STATE(1918), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_case_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_goto_statement] = STATE(8), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(3), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15665,23 +15644,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15722,75 +15701,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1953), - [sym_preproc_elif] = STATE(1953), - [sym_preproc_elifdef] = STATE(1953), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1860), + [sym_preproc_elif] = STATE(1860), + [sym_preproc_elifdef] = STATE(1860), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15823,23 +15802,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -15880,75 +15859,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1734), - [sym_preproc_elif] = STATE(1734), - [sym_preproc_elifdef] = STATE(1734), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [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(1879), + [sym_preproc_elif] = STATE(1879), + [sym_preproc_elifdef] = STATE(1879), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15981,23 +15960,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16038,75 +16017,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1795), - [sym_preproc_elif] = STATE(1795), - [sym_preproc_elifdef] = STATE(1795), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(819), + [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(1745), + [sym_preproc_elif] = STATE(1745), + [sym_preproc_elifdef] = STATE(1745), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16139,23 +16118,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16196,75 +16175,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [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(1909), - [sym_preproc_elif] = STATE(1909), - [sym_preproc_elifdef] = STATE(1909), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(819), + [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(1755), + [sym_preproc_elif] = STATE(1755), + [sym_preproc_elifdef] = STATE(1755), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16297,23 +16276,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16354,75 +16333,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1783), - [sym_preproc_elif] = STATE(1783), - [sym_preproc_elifdef] = STATE(1783), - [sym_function_definition] = STATE(3), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(819), + [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(1822), + [sym_preproc_elif] = STATE(1822), + [sym_preproc_elifdef] = STATE(1822), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16455,23 +16434,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16512,74 +16491,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1757), - [sym_preproc_elif] = STATE(1757), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [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(1747), + [sym_preproc_elif] = STATE(1747), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -16610,23 +16589,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16673,26 +16652,26 @@ 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(1860), - [sym_preproc_elif] = STATE(1860), + [sym_preproc_else] = STATE(1812), + [sym_preproc_elif] = STATE(1812), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -16706,35 +16685,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -16765,23 +16744,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16828,26 +16807,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(24), [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1898), - [sym_preproc_elif] = STATE(1898), + [sym_preproc_else] = STATE(1875), + [sym_preproc_elif] = STATE(1875), [sym_function_definition] = STATE(24), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(24), [sym_labeled_statement] = STATE(24), [sym_expression_statement] = STATE(24), @@ -16861,35 +16840,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(24), [sym_continue_statement] = STATE(24), [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -16920,23 +16899,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -16977,74 +16956,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1951), - [sym_preproc_elif] = STATE(1951), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [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(1837), + [sym_preproc_elif] = STATE(1837), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -17075,23 +17054,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -17132,74 +17111,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [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(1917), - [sym_preproc_elif] = STATE(1917), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(819), + [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(1739), + [sym_preproc_elif] = STATE(1739), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -17230,23 +17209,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -17293,26 +17272,26 @@ 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(1981), - [sym_preproc_elif] = STATE(1981), + [sym_preproc_else] = STATE(1743), + [sym_preproc_elif] = STATE(1743), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17326,35 +17305,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -17385,23 +17364,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -17442,74 +17421,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [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(1983), - [sym_preproc_elif] = STATE(1983), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(819), + [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(1713), + [sym_preproc_elif] = STATE(1713), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -17540,23 +17519,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -17597,187 +17576,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [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(1863), - [sym_preproc_elif] = STATE(1863), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [20] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1731), - [sym_preproc_elif] = STATE(1731), + [sym_preproc_else] = STATE(1929), + [sym_preproc_elif] = STATE(1929), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17791,40 +17615,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(227), + [aux_sym_preproc_if_token2] = ACTIONS(225), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17850,23 +17674,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -17906,80 +17730,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [21] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1735), - [sym_preproc_elif] = STATE(1735), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(819), + [20] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(1808), + [sym_preproc_elif] = STATE(1808), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(229), + [aux_sym_preproc_if_token2] = ACTIONS(227), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18005,23 +17829,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -18061,80 +17885,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [22] = { - [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(1822), - [sym_preproc_elif] = STATE(1822), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(819), + [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(1809), + [sym_preproc_elif] = STATE(1809), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(229), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18160,23 +17984,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -18216,80 +18040,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [22] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1351), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1038), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [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_typedef] = ACTIONS(266), + [anon_sym_extern] = ACTIONS(269), + [anon_sym___attribute__] = ACTIONS(272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym___declspec] = ACTIONS(278), + [anon_sym___cdecl] = ACTIONS(281), + [anon_sym___clrcall] = ACTIONS(281), + [anon_sym___stdcall] = ACTIONS(281), + [anon_sym___fastcall] = ACTIONS(281), + [anon_sym___thiscall] = ACTIONS(281), + [anon_sym___vectorcall] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_static] = ACTIONS(290), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(290), + [anon_sym_inline] = ACTIONS(290), + [anon_sym_thread_local] = ACTIONS(290), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_struct] = ACTIONS(302), + [anon_sym_union] = ACTIONS(305), + [anon_sym_if] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_case] = ACTIONS(314), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(320), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(326), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(335), + [anon_sym_goto] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + }, [23] = { - [sym_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(1992), - [sym_preproc_elif] = STATE(1992), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(1958), + [sym_preproc_elif] = STATE(1958), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(371), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18315,23 +18294,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -18378,26 +18357,26 @@ 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(1877), - [sym_preproc_elif] = STATE(1877), + [sym_preproc_else] = STATE(1896), + [sym_preproc_elif] = STATE(1896), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18411,40 +18390,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(235), + [aux_sym_preproc_if_token2] = ACTIONS(373), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18470,23 +18449,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -18527,229 +18506,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1355), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(819), + [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(1752), + [sym_preproc_elif] = STATE(1752), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(237), - [aux_sym_preproc_include_token1] = ACTIONS(240), - [aux_sym_preproc_def_token1] = ACTIONS(243), - [aux_sym_preproc_if_token1] = ACTIONS(246), - [aux_sym_preproc_if_token2] = ACTIONS(249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(251), - [aux_sym_preproc_else_token1] = ACTIONS(249), - [aux_sym_preproc_elif_token1] = ACTIONS(249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(249), - [sym_preproc_directive] = ACTIONS(254), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(272), - [anon_sym_extern] = ACTIONS(275), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(299), - [anon_sym_unsigned] = ACTIONS(299), - [anon_sym_long] = ACTIONS(299), - [anon_sym_short] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(326), - [anon_sym_do] = ACTIONS(329), - [anon_sym_for] = ACTIONS(332), - [anon_sym_return] = ACTIONS(335), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(344), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(175), + [aux_sym_preproc_if_token2] = ACTIONS(375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [aux_sym_preproc_else_token1] = ACTIONS(109), + [aux_sym_preproc_elif_token1] = ACTIONS(111), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_extern] = ACTIONS(187), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(37), + [anon_sym___clrcall] = ACTIONS(37), + [anon_sym___stdcall] = ACTIONS(37), + [anon_sym___fastcall] = ACTIONS(37), + [anon_sym___thiscall] = ACTIONS(37), + [anon_sym___vectorcall] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [sym_primitive_type] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(51), + [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, [26] = { - [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(1777), - [sym_preproc_elif] = STATE(1777), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(1753), + [sym_preproc_elif] = STATE(1753), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -18780,23 +18759,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -18846,21 +18825,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1339), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1342), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(816), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(815), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(999), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1027), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18874,86 +18853,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(379), [aux_sym_preproc_include_token1] = ACTIONS(382), [aux_sym_preproc_def_token1] = ACTIONS(385), [aux_sym_preproc_if_token1] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_if_token2] = ACTIONS(243), [aux_sym_preproc_ifdef_token1] = ACTIONS(391), [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [aux_sym_preproc_else_token1] = ACTIONS(249), - [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_else_token1] = ACTIONS(243), + [aux_sym_preproc_elif_token1] = ACTIONS(243), [sym_preproc_directive] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), + [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(397), [anon_sym_typedef] = ACTIONS(400), [anon_sym_extern] = ACTIONS(403), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), + [anon_sym___attribute__] = ACTIONS(272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym___declspec] = ACTIONS(278), + [anon_sym___cdecl] = ACTIONS(281), + [anon_sym___clrcall] = ACTIONS(281), + [anon_sym___stdcall] = ACTIONS(281), + [anon_sym___fastcall] = ACTIONS(281), + [anon_sym___thiscall] = ACTIONS(281), + [anon_sym___vectorcall] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(299), - [anon_sym_unsigned] = ACTIONS(299), - [anon_sym_long] = ACTIONS(299), - [anon_sym_short] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_static] = ACTIONS(290), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(290), + [anon_sym_inline] = ACTIONS(290), + [anon_sym_thread_local] = ACTIONS(290), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_struct] = ACTIONS(302), + [anon_sym_union] = ACTIONS(305), [anon_sym_if] = ACTIONS(409), [anon_sym_switch] = ACTIONS(412), [anon_sym_case] = ACTIONS(415), @@ -18965,97 +18944,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(436), [anon_sym_goto] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19084,23 +19063,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -19141,72 +19120,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19235,23 +19214,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -19292,72 +19271,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19386,23 +19365,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -19443,223 +19422,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(490), - [aux_sym_preproc_include_token1] = ACTIONS(493), - [aux_sym_preproc_def_token1] = ACTIONS(496), - [aux_sym_preproc_if_token1] = ACTIONS(499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(502), - [sym_preproc_directive] = ACTIONS(505), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(511), - [anon_sym_extern] = ACTIONS(514), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(517), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(299), - [anon_sym_unsigned] = ACTIONS(299), - [anon_sym_long] = ACTIONS(299), - [anon_sym_short] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_case] = ACTIONS(528), - [anon_sym_default] = ACTIONS(531), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(537), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(543), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_goto] = ACTIONS(552), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19687,24 +19515,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -19744,73 +19572,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [32] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19838,24 +19666,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -19895,73 +19723,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(819), + [33] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19989,24 +19817,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20046,6 +19874,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [34] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1340), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(496), + [aux_sym_preproc_include_token1] = ACTIONS(499), + [aux_sym_preproc_def_token1] = ACTIONS(502), + [aux_sym_preproc_if_token1] = ACTIONS(505), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(508), + [sym_preproc_directive] = ACTIONS(511), + [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(514), + [anon_sym_typedef] = ACTIONS(517), + [anon_sym_extern] = ACTIONS(520), + [anon_sym___attribute__] = ACTIONS(272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym___declspec] = ACTIONS(278), + [anon_sym___cdecl] = ACTIONS(281), + [anon_sym___clrcall] = ACTIONS(281), + [anon_sym___stdcall] = ACTIONS(281), + [anon_sym___fastcall] = ACTIONS(281), + [anon_sym___thiscall] = ACTIONS(281), + [anon_sym___vectorcall] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_static] = ACTIONS(290), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(290), + [anon_sym_inline] = ACTIONS(290), + [anon_sym_thread_local] = ACTIONS(290), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_struct] = ACTIONS(302), + [anon_sym_union] = ACTIONS(305), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_case] = ACTIONS(532), + [anon_sym_default] = ACTIONS(535), + [anon_sym_while] = ACTIONS(538), + [anon_sym_do] = ACTIONS(541), + [anon_sym_for] = ACTIONS(544), + [anon_sym_return] = ACTIONS(547), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_goto] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + }, [35] = { [sym_preproc_include] = STATE(31), [sym_preproc_def] = STATE(31), @@ -20056,21 +20035,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(31), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(31), [sym_labeled_statement] = STATE(31), [sym_expression_statement] = STATE(31), @@ -20084,35 +20063,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(31), [sym_continue_statement] = STATE(31), [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20140,24 +20119,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20198,72 +20177,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [36] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20291,24 +20270,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20349,72 +20328,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(563), + [aux_sym_preproc_include_token1] = ACTIONS(566), + [aux_sym_preproc_def_token1] = ACTIONS(569), + [aux_sym_preproc_if_token1] = ACTIONS(572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(575), + [sym_preproc_directive] = ACTIONS(578), + [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(581), + [anon_sym_typedef] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(587), + [anon_sym___attribute__] = ACTIONS(272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym___declspec] = ACTIONS(278), + [anon_sym___cdecl] = ACTIONS(281), + [anon_sym___clrcall] = ACTIONS(281), + [anon_sym___stdcall] = ACTIONS(281), + [anon_sym___fastcall] = ACTIONS(281), + [anon_sym___thiscall] = ACTIONS(281), + [anon_sym___vectorcall] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [anon_sym_static] = ACTIONS(290), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(290), + [anon_sym_inline] = ACTIONS(290), + [anon_sym_thread_local] = ACTIONS(290), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(299), + [anon_sym_struct] = ACTIONS(302), + [anon_sym_union] = ACTIONS(305), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_case] = ACTIONS(601), + [anon_sym_default] = ACTIONS(604), + [anon_sym_while] = ACTIONS(607), + [anon_sym_do] = ACTIONS(610), + [anon_sym_for] = ACTIONS(613), + [anon_sym_return] = ACTIONS(616), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_goto] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + }, + [38] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20442,24 +20572,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20499,73 +20629,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(819), + [39] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20593,24 +20723,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20650,80 +20780,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(819), + [40] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1340), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(632), + [aux_sym_preproc_include_token1] = ACTIONS(634), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(638), + [aux_sym_preproc_if_token2] = ACTIONS(640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(642), + [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20731,9 +20862,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(650), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -20743,40 +20874,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -20801,73 +20931,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [41] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20895,24 +21025,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -20952,81 +21082,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [41] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1349), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(819), + [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_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(812), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(991), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(573), - [aux_sym_preproc_include_token1] = ACTIONS(575), - [aux_sym_preproc_def_token1] = ACTIONS(577), - [aux_sym_preproc_if_token1] = ACTIONS(579), - [aux_sym_preproc_if_token2] = ACTIONS(581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(583), - [sym_preproc_directive] = ACTIONS(585), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21034,9 +21163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -21046,39 +21175,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -21103,80 +21233,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [42] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(819), + [43] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1340), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(632), + [aux_sym_preproc_include_token1] = ACTIONS(634), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(638), + [aux_sym_preproc_if_token2] = ACTIONS(680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(642), + [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21184,9 +21315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(650), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -21196,40 +21327,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -21254,73 +21384,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [44] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21348,24 +21478,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -21405,73 +21535,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [44] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(819), + [45] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21499,24 +21629,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -21556,7 +21686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [45] = { + [46] = { [sym_preproc_include] = STATE(32), [sym_preproc_def] = STATE(32), [sym_preproc_function_def] = STATE(32), @@ -21566,21 +21696,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(32), [sym_declaration] = STATE(32), [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(32), [sym_labeled_statement] = STATE(32), [sym_expression_statement] = STATE(32), @@ -21594,35 +21724,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(32), [sym_continue_statement] = STATE(32), [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21650,24 +21780,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -21707,73 +21837,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [46] = { - [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_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(819), + [47] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(51), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21801,24 +21931,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -21858,73 +21988,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [48] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21952,24 +22082,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -22009,81 +22139,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [48] = { - [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_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1349), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(819), + [49] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(812), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(991), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(573), - [aux_sym_preproc_include_token1] = ACTIONS(575), - [aux_sym_preproc_def_token1] = ACTIONS(577), - [aux_sym_preproc_if_token1] = ACTIONS(579), - [aux_sym_preproc_if_token2] = ACTIONS(629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(583), - [sym_preproc_directive] = ACTIONS(585), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22091,9 +22220,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -22103,39 +22232,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -22160,73 +22290,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [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_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22254,24 +22384,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -22311,224 +22441,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1349), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(812), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(991), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(633), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(639), - [aux_sym_preproc_if_token1] = ACTIONS(642), - [aux_sym_preproc_if_token2] = ACTIONS(249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(645), - [sym_preproc_directive] = ACTIONS(648), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_typedef] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(657), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(299), - [anon_sym_unsigned] = ACTIONS(299), - [anon_sym_long] = ACTIONS(299), - [anon_sym_short] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(663), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_case] = ACTIONS(669), - [anon_sym_default] = ACTIONS(672), - [anon_sym_while] = ACTIONS(675), - [anon_sym_do] = ACTIONS(678), - [anon_sym_for] = ACTIONS(681), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(690), - [anon_sym_goto] = ACTIONS(693), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), - [sym_comment] = ACTIONS(3), - }, [51] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1341), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(819), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1356), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(983), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1040), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22557,23 +22536,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -22623,21 +22602,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1343), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1345), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(813), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1030), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -22651,34 +22630,34 @@ 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(1173), - [sym__expression_not_binary] = STATE(1166), - [sym_conditional_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1166), + [sym__expression] = STATE(1177), + [sym__expression_not_binary] = STATE(1207), + [sym_conditional_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1207), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1166), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(1166), - [sym_cast_expression] = STATE(1166), - [sym_sizeof_expression] = STATE(1166), - [sym_offsetof_expression] = STATE(1166), - [sym_generic_expression] = STATE(1166), + [sym_unary_expression] = STATE(1207), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(1207), + [sym_cast_expression] = STATE(1207), + [sym_sizeof_expression] = STATE(1207), + [sym_offsetof_expression] = STATE(1207), + [sym_generic_expression] = STATE(1207), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1166), + [sym_gnu_asm_expression] = STATE(1207), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1166), + [sym_compound_literal_expression] = STATE(1207), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1166), - [sym_concatenated_string] = STATE(1166), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(1166), + [sym_char_literal] = STATE(1207), + [sym_concatenated_string] = STATE(1207), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(1207), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [ts_builtin_sym_end] = ACTIONS(698), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -22706,23 +22685,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -22772,21 +22751,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1343), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1345), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(819), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_call_modifier] = STATE(813), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(1030), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -22800,34 +22779,34 @@ 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(1173), - [sym__expression_not_binary] = STATE(1166), - [sym_conditional_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1166), + [sym__expression] = STATE(1177), + [sym__expression_not_binary] = STATE(1207), + [sym_conditional_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1207), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1166), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(1166), - [sym_cast_expression] = STATE(1166), - [sym_sizeof_expression] = STATE(1166), - [sym_offsetof_expression] = STATE(1166), - [sym_generic_expression] = STATE(1166), + [sym_unary_expression] = STATE(1207), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(1207), + [sym_cast_expression] = STATE(1207), + [sym_sizeof_expression] = STATE(1207), + [sym_offsetof_expression] = STATE(1207), + [sym_generic_expression] = STATE(1207), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1166), + [sym_gnu_asm_expression] = STATE(1207), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1166), + [sym_compound_literal_expression] = STATE(1207), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1166), - [sym_concatenated_string] = STATE(1166), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(1166), + [sym_char_literal] = STATE(1207), + [sym_concatenated_string] = STATE(1207), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(1207), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1147), + [sym_macro_type_specifier] = STATE(1020), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [ts_builtin_sym_end] = ACTIONS(700), [sym_identifier] = ACTIONS(702), [aux_sym_preproc_include_token1] = ACTIONS(705), @@ -22855,23 +22834,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(747), [anon_sym___vectorcall] = ACTIONS(747), [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_static] = ACTIONS(753), - [anon_sym_auto] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_inline] = ACTIONS(753), - [anon_sym_thread_local] = ACTIONS(753), - [anon_sym_const] = ACTIONS(756), - [anon_sym_constexpr] = ACTIONS(756), - [anon_sym_volatile] = ACTIONS(756), - [anon_sym_restrict] = ACTIONS(756), - [anon_sym___restrict__] = ACTIONS(756), - [anon_sym__Atomic] = ACTIONS(756), - [anon_sym__Noreturn] = ACTIONS(756), - [anon_sym_noreturn] = ACTIONS(756), - [anon_sym_signed] = ACTIONS(759), - [anon_sym_unsigned] = ACTIONS(759), - [anon_sym_long] = ACTIONS(759), - [anon_sym_short] = ACTIONS(759), + [anon_sym_signed] = ACTIONS(753), + [anon_sym_unsigned] = ACTIONS(753), + [anon_sym_long] = ACTIONS(753), + [anon_sym_short] = ACTIONS(753), + [anon_sym_static] = ACTIONS(756), + [anon_sym_auto] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_inline] = ACTIONS(756), + [anon_sym_thread_local] = ACTIONS(756), + [anon_sym_const] = ACTIONS(759), + [anon_sym_constexpr] = ACTIONS(759), + [anon_sym_volatile] = ACTIONS(759), + [anon_sym_restrict] = ACTIONS(759), + [anon_sym___restrict__] = ACTIONS(759), + [anon_sym__Atomic] = ACTIONS(759), + [anon_sym__Noreturn] = ACTIONS(759), + [anon_sym_noreturn] = ACTIONS(759), [sym_primitive_type] = ACTIONS(762), [anon_sym_enum] = ACTIONS(765), [anon_sym_struct] = ACTIONS(768), @@ -22912,61 +22891,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(819), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(57), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(837), [aux_sym_preproc_include_token1] = ACTIONS(839), [aux_sym_preproc_def_token1] = ACTIONS(839), @@ -22988,7 +22967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(117), [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -22999,23 +22978,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(839), [anon_sym___vectorcall] = ACTIONS(839), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -23057,166 +23036,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(819), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_if_token2] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [aux_sym_preproc_else_token1] = ACTIONS(841), - [aux_sym_preproc_elif_token1] = ACTIONS(841), - [aux_sym_preproc_elifdef_token1] = ACTIONS(841), - [aux_sym_preproc_elifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(41), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(841), + [aux_sym_preproc_include_token1] = ACTIONS(844), + [aux_sym_preproc_def_token1] = ACTIONS(844), + [aux_sym_preproc_if_token1] = ACTIONS(844), + [aux_sym_preproc_if_token2] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(844), + [aux_sym_preproc_else_token1] = ACTIONS(844), + [aux_sym_preproc_elif_token1] = ACTIONS(844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(844), + [sym_preproc_directive] = ACTIONS(844), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_typedef] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym___cdecl] = ACTIONS(844), + [anon_sym___clrcall] = ACTIONS(844), + [anon_sym___stdcall] = ACTIONS(844), + [anon_sym___fastcall] = ACTIONS(844), + [anon_sym___thiscall] = ACTIONS(844), + [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(897), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(909), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [56] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -23229,46 +23208,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(55), [sym_continue_statement] = STATE(55), [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(55), [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(843), - [aux_sym_preproc_if_token2] = ACTIONS(843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(843), - [aux_sym_preproc_else_token1] = ACTIONS(843), - [aux_sym_preproc_elif_token1] = ACTIONS(843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(843), - [aux_sym_preproc_elifdef_token2] = ACTIONS(843), - [sym_preproc_directive] = ACTIONS(843), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [aux_sym_preproc_else_token1] = ACTIONS(954), + [aux_sym_preproc_elif_token1] = ACTIONS(954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23278,43 +23257,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(117), [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(843), - [anon_sym___clrcall] = ACTIONS(843), - [anon_sym___stdcall] = ACTIONS(843), - [anon_sym___fastcall] = ACTIONS(843), - [anon_sym___thiscall] = ACTIONS(843), - [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(843), + [anon_sym_else] = ACTIONS(954), [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), [anon_sym_while] = ACTIONS(133), [anon_sym_do] = ACTIONS(135), [anon_sym_for] = ACTIONS(137), @@ -23349,19 +23328,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -23374,46 +23353,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(58), [sym_continue_statement] = STATE(58), [sym_goto_statement] = STATE(58), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(845), - [aux_sym_preproc_def_token1] = ACTIONS(845), - [aux_sym_preproc_if_token1] = ACTIONS(845), - [aux_sym_preproc_if_token2] = ACTIONS(845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(845), - [aux_sym_preproc_else_token1] = ACTIONS(845), - [aux_sym_preproc_elif_token1] = ACTIONS(845), - [aux_sym_preproc_elifdef_token1] = ACTIONS(845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(845), - [sym_preproc_directive] = ACTIONS(845), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [aux_sym_preproc_else_token1] = ACTIONS(956), + [aux_sym_preproc_elif_token1] = ACTIONS(956), + [aux_sym_preproc_elifdef_token1] = ACTIONS(956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23423,43 +23402,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(117), [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(845), - [anon_sym___clrcall] = ACTIONS(845), - [anon_sym___stdcall] = ACTIONS(845), - [anon_sym___fastcall] = ACTIONS(845), - [anon_sym___thiscall] = ACTIONS(845), - [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(845), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), [anon_sym_while] = ACTIONS(133), [anon_sym_do] = ACTIONS(135), [anon_sym_for] = ACTIONS(137), @@ -23492,359 +23471,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(847), - [aux_sym_preproc_include_token1] = ACTIONS(850), - [aux_sym_preproc_def_token1] = ACTIONS(850), - [aux_sym_preproc_if_token1] = ACTIONS(850), - [aux_sym_preproc_if_token2] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(850), - [aux_sym_preproc_else_token1] = ACTIONS(850), - [aux_sym_preproc_elif_token1] = ACTIONS(850), - [aux_sym_preproc_elifdef_token1] = ACTIONS(850), - [aux_sym_preproc_elifdef_token2] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(850), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_typedef] = ACTIONS(867), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym___cdecl] = ACTIONS(850), - [anon_sym___clrcall] = ACTIONS(850), - [anon_sym___stdcall] = ACTIONS(850), - [anon_sym___fastcall] = ACTIONS(850), - [anon_sym___thiscall] = ACTIONS(850), - [anon_sym___vectorcall] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(912), - [anon_sym_for] = ACTIONS(915), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(921), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1342), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(850), - [aux_sym_preproc_def_token1] = ACTIONS(850), - [aux_sym_preproc_if_token1] = ACTIONS(850), - [aux_sym_preproc_if_token2] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(850), - [aux_sym_preproc_else_token1] = ACTIONS(850), - [aux_sym_preproc_elif_token1] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(850), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym___cdecl] = ACTIONS(850), - [anon_sym___clrcall] = ACTIONS(850), - [anon_sym___stdcall] = ACTIONS(850), - [anon_sym___fastcall] = ACTIONS(850), - [anon_sym___thiscall] = ACTIONS(850), - [anon_sym___vectorcall] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(981), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(987), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1342), - [sym_attribute_specifier] = STATE(819), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(845), - [aux_sym_preproc_def_token1] = ACTIONS(845), - [aux_sym_preproc_if_token1] = ACTIONS(845), - [aux_sym_preproc_if_token2] = ACTIONS(845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(845), - [aux_sym_preproc_else_token1] = ACTIONS(845), - [aux_sym_preproc_elif_token1] = ACTIONS(845), - [sym_preproc_directive] = ACTIONS(845), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(837), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [aux_sym_preproc_else_token1] = ACTIONS(958), + [aux_sym_preproc_elif_token1] = ACTIONS(958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(958), + [aux_sym_preproc_elifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23852,52 +23545,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_typedef] = ACTIONS(119), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(845), - [anon_sym___clrcall] = ACTIONS(845), - [anon_sym___stdcall] = ACTIONS(845), - [anon_sym___fastcall] = ACTIONS(845), - [anon_sym___thiscall] = ACTIONS(845), - [anon_sym___vectorcall] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(125), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -23922,72 +23615,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1342), - [sym_attribute_specifier] = STATE(819), + [59] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1339), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_if_token2] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [aux_sym_preproc_else_token1] = ACTIONS(841), - [aux_sym_preproc_elif_token1] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [aux_sym_preproc_else_token1] = ACTIONS(954), + [aux_sym_preproc_elif_token1] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23997,43 +23690,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(841), + [anon_sym_else] = ACTIONS(954), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -24065,63 +23758,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1342), - [sym_attribute_specifier] = STATE(819), + [60] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1339), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(999), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(839), [aux_sym_preproc_def_token1] = ACTIONS(839), [aux_sym_preproc_if_token1] = ACTIONS(839), @@ -24140,7 +23833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -24151,23 +23844,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(839), [anon_sym___vectorcall] = ACTIONS(839), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -24208,22 +23901,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [63] = { + [61] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1342), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1339), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -24236,44 +23929,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(61), [sym_continue_statement] = STATE(61), [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(843), - [aux_sym_preproc_if_token2] = ACTIONS(843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(843), - [aux_sym_preproc_else_token1] = ACTIONS(843), - [aux_sym_preproc_elif_token1] = ACTIONS(843), - [sym_preproc_directive] = ACTIONS(843), + [sym_identifier] = ACTIONS(962), + [aux_sym_preproc_include_token1] = ACTIONS(844), + [aux_sym_preproc_def_token1] = ACTIONS(844), + [aux_sym_preproc_if_token1] = ACTIONS(844), + [aux_sym_preproc_if_token2] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(844), + [aux_sym_preproc_else_token1] = ACTIONS(844), + [aux_sym_preproc_elif_token1] = ACTIONS(844), + [sym_preproc_directive] = ACTIONS(844), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym___cdecl] = ACTIONS(844), + [anon_sym___clrcall] = ACTIONS(844), + [anon_sym___stdcall] = ACTIONS(844), + [anon_sym___fastcall] = ACTIONS(844), + [anon_sym___thiscall] = ACTIONS(844), + [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(983), + [anon_sym_for] = ACTIONS(986), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(995), + [anon_sym_goto] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1339), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [aux_sym_preproc_else_token1] = ACTIONS(956), + [aux_sym_preproc_elif_token1] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24283,43 +24119,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(843), - [anon_sym___clrcall] = ACTIONS(843), - [anon_sym___stdcall] = ACTIONS(843), - [anon_sym___fastcall] = ACTIONS(843), - [anon_sym___thiscall] = ACTIONS(843), - [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(843), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -24351,210 +24187,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1351), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1001), - [aux_sym_preproc_include_token1] = ACTIONS(850), - [aux_sym_preproc_def_token1] = ACTIONS(850), - [aux_sym_preproc_if_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(850), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym___cdecl] = ACTIONS(850), - [anon_sym___clrcall] = ACTIONS(850), - [anon_sym___stdcall] = ACTIONS(850), - [anon_sym___fastcall] = ACTIONS(850), - [anon_sym___thiscall] = ACTIONS(850), - [anon_sym___vectorcall] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1351), - [sym_attribute_specifier] = STATE(819), + [63] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1339), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [aux_sym_preproc_else_token1] = ACTIONS(958), + [aux_sym_preproc_elif_token1] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24562,53 +24260,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(191), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -24633,70 +24330,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1340), - [sym_attribute_specifier] = STATE(819), + [64] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24704,52 +24401,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -24774,70 +24471,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [65] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24845,45 +24542,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(839), + [anon_sym_else] = ACTIONS(958), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), [anon_sym_for] = ACTIONS(67), @@ -24915,22 +24612,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [68] = { + [66] = { [sym_declaration] = STATE(69), [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1340), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(69), [sym_labeled_statement] = STATE(69), [sym_expression_statement] = STATE(69), @@ -24943,42 +24640,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(69), [sym_continue_statement] = STATE(69), [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_if_token2] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(839), + [aux_sym_preproc_def_token1] = ACTIONS(839), + [aux_sym_preproc_if_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(839), + [sym_preproc_directive] = ACTIONS(839), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24986,52 +24682,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(839), + [anon_sym___clrcall] = ACTIONS(839), + [anon_sym___stdcall] = ACTIONS(839), + [anon_sym___fastcall] = ACTIONS(839), + [anon_sym___thiscall] = ACTIONS(839), + [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25056,210 +24753,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1340), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(850), - [aux_sym_preproc_def_token1] = ACTIONS(850), - [aux_sym_preproc_if_token1] = ACTIONS(850), - [aux_sym_preproc_if_token2] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(850), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym___cdecl] = ACTIONS(850), - [anon_sym___clrcall] = ACTIONS(850), - [anon_sym___stdcall] = ACTIONS(850), - [anon_sym___fastcall] = ACTIONS(850), - [anon_sym___thiscall] = ACTIONS(850), - [anon_sym___vectorcall] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(1067), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - }, - [70] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1351), - [sym_attribute_specifier] = STATE(819), + [67] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(843), - [sym_preproc_directive] = ACTIONS(843), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25269,44 +24825,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(843), - [anon_sym___clrcall] = ACTIONS(843), - [anon_sym___stdcall] = ACTIONS(843), - [anon_sym___fastcall] = ACTIONS(843), - [anon_sym___thiscall] = ACTIONS(843), - [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1091), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(843), + [anon_sym_else] = ACTIONS(958), [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), [anon_sym_while] = ACTIONS(472), [anon_sym_do] = ACTIONS(474), [anon_sym_for] = ACTIONS(476), @@ -25338,70 +24894,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [68] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(73), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(843), - [sym_preproc_directive] = ACTIONS(843), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(839), + [aux_sym_preproc_def_token1] = ACTIONS(839), + [aux_sym_preproc_if_token1] = ACTIONS(839), + [aux_sym_preproc_if_token2] = ACTIONS(839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(839), + [sym_preproc_directive] = ACTIONS(839), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25409,52 +24965,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(843), - [anon_sym___clrcall] = ACTIONS(843), - [anon_sym___stdcall] = ACTIONS(843), - [anon_sym___fastcall] = ACTIONS(843), - [anon_sym___thiscall] = ACTIONS(843), - [anon_sym___vectorcall] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(839), + [anon_sym___clrcall] = ACTIONS(839), + [anon_sym___stdcall] = ACTIONS(839), + [anon_sym___fastcall] = ACTIONS(839), + [anon_sym___thiscall] = ACTIONS(839), + [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(843), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25479,70 +25035,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1340), - [sym_attribute_specifier] = STATE(819), + [69] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(845), - [aux_sym_preproc_def_token1] = ACTIONS(845), - [aux_sym_preproc_if_token1] = ACTIONS(845), - [aux_sym_preproc_if_token2] = ACTIONS(845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(845), - [sym_preproc_directive] = ACTIONS(845), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25550,52 +25105,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(845), - [anon_sym___clrcall] = ACTIONS(845), - [anon_sym___stdcall] = ACTIONS(845), - [anon_sym___fastcall] = ACTIONS(845), - [anon_sym___thiscall] = ACTIONS(845), - [anon_sym___vectorcall] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25620,70 +25176,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [70] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25691,45 +25247,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(841), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), [anon_sym_for] = ACTIONS(67), @@ -25761,22 +25317,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [74] = { + [71] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [sym_primitive_type] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(51), + [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [72] = { [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1351), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -25789,41 +25486,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(64), [sym_continue_statement] = STATE(64), [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(839), + [aux_sym_preproc_def_token1] = ACTIONS(839), + [aux_sym_preproc_if_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(839), + [sym_preproc_directive] = ACTIONS(839), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25831,53 +25529,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(839), + [anon_sym___clrcall] = ACTIONS(839), + [anon_sym___stdcall] = ACTIONS(839), + [anon_sym___fastcall] = ACTIONS(839), + [anon_sym___thiscall] = ACTIONS(839), + [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25902,70 +25599,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1340), - [sym_attribute_specifier] = STATE(819), + [73] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(843), - [aux_sym_preproc_if_token2] = ACTIONS(843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(843), - [sym_preproc_directive] = ACTIONS(843), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25973,52 +25670,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_typedef] = ACTIONS(589), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(843), - [anon_sym___clrcall] = ACTIONS(843), - [anon_sym___stdcall] = ACTIONS(843), - [anon_sym___fastcall] = ACTIONS(843), - [anon_sym___thiscall] = ACTIONS(843), - [anon_sym___vectorcall] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(843), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -26043,210 +25740,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [74] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1095), - [aux_sym_preproc_include_token1] = ACTIONS(850), - [aux_sym_preproc_def_token1] = ACTIONS(850), - [aux_sym_preproc_if_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(850), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1101), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym___cdecl] = ACTIONS(850), - [anon_sym___clrcall] = ACTIONS(850), - [anon_sym___stdcall] = ACTIONS(850), - [anon_sym___fastcall] = ACTIONS(850), - [anon_sym___thiscall] = ACTIONS(850), - [anon_sym___vectorcall] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [aux_sym_preproc_include_token1] = ACTIONS(844), + [aux_sym_preproc_def_token1] = ACTIONS(844), + [aux_sym_preproc_if_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(844), + [sym_preproc_directive] = ACTIONS(844), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym___cdecl] = ACTIONS(844), + [anon_sym___clrcall] = ACTIONS(844), + [anon_sym___stdcall] = ACTIONS(844), + [anon_sym___fastcall] = ACTIONS(844), + [anon_sym___thiscall] = ACTIONS(844), + [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, - [77] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1351), - [sym_attribute_specifier] = STATE(819), + [75] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(845), - [aux_sym_preproc_def_token1] = ACTIONS(845), - [aux_sym_preproc_if_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(845), - [sym_preproc_directive] = ACTIONS(845), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26254,53 +25952,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(845), - [anon_sym___clrcall] = ACTIONS(845), - [anon_sym___stdcall] = ACTIONS(845), - [anon_sym___fastcall] = ACTIONS(845), - [anon_sym___thiscall] = ACTIONS(845), - [anon_sym___vectorcall] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -26325,22 +26022,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [78] = { + [76] = { [sym_declaration] = STATE(76), [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(76), [sym_labeled_statement] = STATE(76), [sym_expression_statement] = STATE(76), @@ -26353,42 +26050,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(76), [sym_continue_statement] = STATE(76), [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(845), - [aux_sym_preproc_def_token1] = ACTIONS(845), - [aux_sym_preproc_if_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(845), - [aux_sym_preproc_ifdef_token2] = ACTIONS(845), - [sym_preproc_directive] = ACTIONS(845), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(844), + [aux_sym_preproc_def_token1] = ACTIONS(844), + [aux_sym_preproc_if_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(844), + [sym_preproc_directive] = ACTIONS(844), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym___cdecl] = ACTIONS(844), + [anon_sym___clrcall] = ACTIONS(844), + [anon_sym___stdcall] = ACTIONS(844), + [anon_sym___fastcall] = ACTIONS(844), + [anon_sym___thiscall] = ACTIONS(844), + [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(1073), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1091), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26396,52 +26233,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(845), - [anon_sym___clrcall] = ACTIONS(845), - [anon_sym___stdcall] = ACTIONS(845), - [anon_sym___fastcall] = ACTIONS(845), - [anon_sym___thiscall] = ACTIONS(845), - [anon_sym___vectorcall] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -26466,189 +26304,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [78] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(852), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1101), - [anon_sym_extern] = ACTIONS(870), - [anon_sym___attribute__] = ACTIONS(873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(876), - [anon_sym___declspec] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(870), - [anon_sym_auto] = ACTIONS(870), - [anon_sym_register] = ACTIONS(870), - [anon_sym_inline] = ACTIONS(870), - [anon_sym_thread_local] = ACTIONS(870), - [anon_sym_const] = ACTIONS(885), - [anon_sym_constexpr] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_restrict] = ACTIONS(885), - [anon_sym___restrict__] = ACTIONS(885), - [anon_sym__Atomic] = ACTIONS(885), - [anon_sym__Noreturn] = ACTIONS(885), - [anon_sym_noreturn] = ACTIONS(885), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(933), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(939), - [anon_sym_asm] = ACTIONS(942), - [anon_sym___asm__] = ACTIONS(942), - [sym_number_literal] = ACTIONS(945), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(951), - [anon_sym_u_DQUOTE] = ACTIONS(951), - [anon_sym_U_DQUOTE] = ACTIONS(951), - [anon_sym_u8_DQUOTE] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [anon_sym_NULL] = ACTIONS(957), - [anon_sym_nullptr] = ACTIONS(957), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(844), + [aux_sym_preproc_def_token1] = ACTIONS(844), + [aux_sym_preproc_if_token1] = ACTIONS(844), + [aux_sym_preproc_if_token2] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(844), + [sym_preproc_directive] = ACTIONS(844), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1103), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym___cdecl] = ACTIONS(844), + [anon_sym___clrcall] = ACTIONS(844), + [anon_sym___stdcall] = ACTIONS(844), + [anon_sym___fastcall] = ACTIONS(844), + [anon_sym___thiscall] = ACTIONS(844), + [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_while] = ACTIONS(1115), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [79] = { + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1148), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1136), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26658,38 +26511,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(845), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(956), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26718,63 +26571,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [80] = { + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [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__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1148), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(1136), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26784,38 +26637,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(839), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26844,63 +26697,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [81] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1144), + [anon_sym_LPAREN2] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_typedef] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(864), + [anon_sym___attribute__] = ACTIONS(867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym___declspec] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(879), + [anon_sym_unsigned] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_thread_local] = ACTIONS(864), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym___restrict__] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym__Noreturn] = ACTIONS(882), + [anon_sym_noreturn] = ACTIONS(882), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(927), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(933), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(945), + [anon_sym_u_DQUOTE] = ACTIONS(945), + [anon_sym_U_DQUOTE] = ACTIONS(945), + [anon_sym_u8_DQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [anon_sym_NULL] = ACTIONS(951), + [anon_sym_nullptr] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + }, [82] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_ms_declspec_modifier] = STATE(818), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1148), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1136), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26910,38 +26889,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(839), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(954), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26973,19 +26952,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [83] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(819), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1354), + [sym_attribute_specifier] = STATE(818), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_declspec_modifier] = STATE(818), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -26998,35 +26977,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(81), [sym_continue_statement] = STATE(81), [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1136), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27036,38 +27015,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(843), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(958), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -27097,45 +27076,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(637), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1034), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1933), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1085), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1992), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27145,27 +27124,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27195,45 +27174,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(645), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1018), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1994), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(596), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1106), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1931), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27243,27 +27222,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27293,45 +27272,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(608), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1041), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1985), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(603), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1101), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1983), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27341,27 +27320,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27391,45 +27370,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(624), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(646), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1068), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1866), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27439,27 +27418,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27489,45 +27468,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(615), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1059), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1799), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(648), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1069), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1950), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27537,27 +27516,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27587,45 +27566,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(646), - [sym__declaration_modifiers] = STATE(819), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(819), - [sym_attribute_declaration] = STATE(819), - [sym_ms_declspec_modifier] = STATE(819), - [sym_storage_class_specifier] = STATE(819), - [sym_type_qualifier] = STATE(819), - [sym__type_specifier] = STATE(945), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1952), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_declaration] = STATE(616), + [sym__declaration_modifiers] = STATE(818), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(818), + [sym_attribute_declaration] = STATE(818), + [sym_ms_declspec_modifier] = STATE(818), + [sym_storage_class_specifier] = STATE(818), + [sym_type_qualifier] = STATE(818), + [sym__type_specifier] = STATE(972), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1122), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1988), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(819), - [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(818), + [aux_sym_sized_type_specifier_repeat1] = STATE(1022), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27635,27 +27614,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), @@ -27685,29 +27664,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym__expression] = STATE(777), - [sym__expression_not_binary] = STATE(797), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(797), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(797), - [sym_call_expression] = STATE(797), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(797), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_initializer_list] = STATE(776), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym__expression] = STATE(769), + [sym__expression_not_binary] = STATE(808), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(808), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(808), + [sym_call_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(808), + [sym_initializer_list] = STATE(768), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym_identifier] = ACTIONS(149), [anon_sym_COMMA] = ACTIONS(1172), [anon_sym_RPAREN] = ACTIONS(1172), @@ -27777,7 +27756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [91] = { - [sym_else_clause] = STATE(130), + [sym_else_clause] = STATE(129), [sym_identifier] = ACTIONS(1190), [aux_sym_preproc_include_token1] = ACTIONS(1190), [aux_sym_preproc_def_token1] = ACTIONS(1190), @@ -27810,6 +27789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1190), [anon_sym___vectorcall] = ACTIONS(1190), [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), [anon_sym_static] = ACTIONS(1190), [anon_sym_auto] = ACTIONS(1190), [anon_sym_register] = ACTIONS(1190), @@ -27823,10 +27806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1190), [anon_sym__Noreturn] = ACTIONS(1190), [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), [sym_primitive_type] = ACTIONS(1190), [anon_sym_enum] = ACTIONS(1190), [anon_sym_struct] = ACTIONS(1190), @@ -27900,6 +27879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1196), [anon_sym___vectorcall] = ACTIONS(1196), [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), [anon_sym_static] = ACTIONS(1196), [anon_sym_auto] = ACTIONS(1196), [anon_sym_register] = ACTIONS(1196), @@ -27913,10 +27896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1196), [anon_sym__Noreturn] = ACTIONS(1196), [anon_sym_noreturn] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), [sym_primitive_type] = ACTIONS(1196), [anon_sym_enum] = ACTIONS(1196), [anon_sym_struct] = ACTIONS(1196), @@ -27990,6 +27969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1200), [anon_sym___vectorcall] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), [anon_sym_static] = ACTIONS(1200), [anon_sym_auto] = ACTIONS(1200), [anon_sym_register] = ACTIONS(1200), @@ -28003,10 +27986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1200), [anon_sym__Noreturn] = ACTIONS(1200), [anon_sym_noreturn] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), [sym_primitive_type] = ACTIONS(1200), [anon_sym_enum] = ACTIONS(1200), [anon_sym_struct] = ACTIONS(1200), @@ -28080,6 +28059,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1204), [anon_sym___vectorcall] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), [anon_sym_static] = ACTIONS(1204), [anon_sym_auto] = ACTIONS(1204), [anon_sym_register] = ACTIONS(1204), @@ -28093,10 +28076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1204), [anon_sym__Noreturn] = ACTIONS(1204), [anon_sym_noreturn] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), [sym_primitive_type] = ACTIONS(1204), [anon_sym_enum] = ACTIONS(1204), [anon_sym_struct] = ACTIONS(1204), @@ -28170,6 +28149,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1208), [anon_sym___vectorcall] = ACTIONS(1208), [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), [anon_sym_static] = ACTIONS(1208), [anon_sym_auto] = ACTIONS(1208), [anon_sym_register] = ACTIONS(1208), @@ -28183,10 +28166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1208), [anon_sym__Noreturn] = ACTIONS(1208), [anon_sym_noreturn] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), [sym_primitive_type] = ACTIONS(1208), [anon_sym_enum] = ACTIONS(1208), [anon_sym_struct] = ACTIONS(1208), @@ -28260,6 +28239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1212), [anon_sym___vectorcall] = ACTIONS(1212), [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), [anon_sym_static] = ACTIONS(1212), [anon_sym_auto] = ACTIONS(1212), [anon_sym_register] = ACTIONS(1212), @@ -28273,10 +28256,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1212), [anon_sym__Noreturn] = ACTIONS(1212), [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), [sym_primitive_type] = ACTIONS(1212), [anon_sym_enum] = ACTIONS(1212), [anon_sym_struct] = ACTIONS(1212), @@ -28350,6 +28329,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1216), [anon_sym___vectorcall] = ACTIONS(1216), [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(1216), [anon_sym_auto] = ACTIONS(1216), [anon_sym_register] = ACTIONS(1216), @@ -28363,10 +28346,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1216), [anon_sym__Noreturn] = ACTIONS(1216), [anon_sym_noreturn] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), [sym_primitive_type] = ACTIONS(1216), [anon_sym_enum] = ACTIONS(1216), [anon_sym_struct] = ACTIONS(1216), @@ -28440,6 +28419,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1220), [anon_sym___vectorcall] = ACTIONS(1220), [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), [anon_sym_static] = ACTIONS(1220), [anon_sym_auto] = ACTIONS(1220), [anon_sym_register] = ACTIONS(1220), @@ -28453,10 +28436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1220), [anon_sym__Noreturn] = ACTIONS(1220), [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), [sym_primitive_type] = ACTIONS(1220), [anon_sym_enum] = ACTIONS(1220), [anon_sym_struct] = ACTIONS(1220), @@ -28530,6 +28509,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1224), [anon_sym___vectorcall] = ACTIONS(1224), [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), [anon_sym_static] = ACTIONS(1224), [anon_sym_auto] = ACTIONS(1224), [anon_sym_register] = ACTIONS(1224), @@ -28543,10 +28526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1224), [anon_sym__Noreturn] = ACTIONS(1224), [anon_sym_noreturn] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), [sym_primitive_type] = ACTIONS(1224), [anon_sym_enum] = ACTIONS(1224), [anon_sym_struct] = ACTIONS(1224), @@ -28620,6 +28599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1228), [anon_sym___vectorcall] = ACTIONS(1228), [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), [anon_sym_static] = ACTIONS(1228), [anon_sym_auto] = ACTIONS(1228), [anon_sym_register] = ACTIONS(1228), @@ -28633,10 +28616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1228), [anon_sym__Noreturn] = ACTIONS(1228), [anon_sym_noreturn] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), [sym_primitive_type] = ACTIONS(1228), [anon_sym_enum] = ACTIONS(1228), [anon_sym_struct] = ACTIONS(1228), @@ -28710,6 +28689,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1232), [anon_sym___vectorcall] = ACTIONS(1232), [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), [anon_sym_static] = ACTIONS(1232), [anon_sym_auto] = ACTIONS(1232), [anon_sym_register] = ACTIONS(1232), @@ -28723,10 +28706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1232), [anon_sym__Noreturn] = ACTIONS(1232), [anon_sym_noreturn] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), [sym_primitive_type] = ACTIONS(1232), [anon_sym_enum] = ACTIONS(1232), [anon_sym_struct] = ACTIONS(1232), @@ -28800,6 +28779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1236), [anon_sym___vectorcall] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), [anon_sym_static] = ACTIONS(1236), [anon_sym_auto] = ACTIONS(1236), [anon_sym_register] = ACTIONS(1236), @@ -28813,10 +28796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1236), [anon_sym__Noreturn] = ACTIONS(1236), [anon_sym_noreturn] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), [sym_primitive_type] = ACTIONS(1236), [anon_sym_enum] = ACTIONS(1236), [anon_sym_struct] = ACTIONS(1236), @@ -28858,96 +28837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [103] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [104] = { [sym_identifier] = ACTIONS(1240), [aux_sym_preproc_include_token1] = ACTIONS(1240), [aux_sym_preproc_def_token1] = ACTIONS(1240), @@ -28980,6 +28869,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1240), [anon_sym___vectorcall] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), [anon_sym_static] = ACTIONS(1240), [anon_sym_auto] = ACTIONS(1240), [anon_sym_register] = ACTIONS(1240), @@ -28993,10 +28886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1240), [anon_sym__Noreturn] = ACTIONS(1240), [anon_sym_noreturn] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), [sym_primitive_type] = ACTIONS(1240), [anon_sym_enum] = ACTIONS(1240), [anon_sym_struct] = ACTIONS(1240), @@ -29037,7 +28926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [105] = { + [104] = { [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), [aux_sym_preproc_def_token1] = ACTIONS(1244), @@ -29070,6 +28959,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1244), [anon_sym___vectorcall] = ACTIONS(1244), [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), [anon_sym_static] = ACTIONS(1244), [anon_sym_auto] = ACTIONS(1244), [anon_sym_register] = ACTIONS(1244), @@ -29083,10 +28976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1244), [anon_sym__Noreturn] = ACTIONS(1244), [anon_sym_noreturn] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), [sym_primitive_type] = ACTIONS(1244), [anon_sym_enum] = ACTIONS(1244), [anon_sym_struct] = ACTIONS(1244), @@ -29127,7 +29016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [106] = { + [105] = { [sym_identifier] = ACTIONS(1248), [aux_sym_preproc_include_token1] = ACTIONS(1248), [aux_sym_preproc_def_token1] = ACTIONS(1248), @@ -29160,6 +29049,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1248), [anon_sym___vectorcall] = ACTIONS(1248), [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), [anon_sym_static] = ACTIONS(1248), [anon_sym_auto] = ACTIONS(1248), [anon_sym_register] = ACTIONS(1248), @@ -29173,10 +29066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1248), [anon_sym__Noreturn] = ACTIONS(1248), [anon_sym_noreturn] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), [sym_primitive_type] = ACTIONS(1248), [anon_sym_enum] = ACTIONS(1248), [anon_sym_struct] = ACTIONS(1248), @@ -29217,7 +29106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [107] = { + [106] = { [sym_identifier] = ACTIONS(1252), [aux_sym_preproc_include_token1] = ACTIONS(1252), [aux_sym_preproc_def_token1] = ACTIONS(1252), @@ -29250,6 +29139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1252), [anon_sym___vectorcall] = ACTIONS(1252), [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), [anon_sym_static] = ACTIONS(1252), [anon_sym_auto] = ACTIONS(1252), [anon_sym_register] = ACTIONS(1252), @@ -29263,10 +29156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1252), [anon_sym__Noreturn] = ACTIONS(1252), [anon_sym_noreturn] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), [sym_primitive_type] = ACTIONS(1252), [anon_sym_enum] = ACTIONS(1252), [anon_sym_struct] = ACTIONS(1252), @@ -29307,7 +29196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [108] = { + [107] = { [sym_identifier] = ACTIONS(1256), [aux_sym_preproc_include_token1] = ACTIONS(1256), [aux_sym_preproc_def_token1] = ACTIONS(1256), @@ -29340,6 +29229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1256), [anon_sym___vectorcall] = ACTIONS(1256), [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), [anon_sym_static] = ACTIONS(1256), [anon_sym_auto] = ACTIONS(1256), [anon_sym_register] = ACTIONS(1256), @@ -29353,10 +29246,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1256), [anon_sym__Noreturn] = ACTIONS(1256), [anon_sym_noreturn] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), [sym_primitive_type] = ACTIONS(1256), [anon_sym_enum] = ACTIONS(1256), [anon_sym_struct] = ACTIONS(1256), @@ -29397,7 +29286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [109] = { + [108] = { [sym_identifier] = ACTIONS(1260), [aux_sym_preproc_include_token1] = ACTIONS(1260), [aux_sym_preproc_def_token1] = ACTIONS(1260), @@ -29430,6 +29319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1260), [anon_sym___vectorcall] = ACTIONS(1260), [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), [anon_sym_static] = ACTIONS(1260), [anon_sym_auto] = ACTIONS(1260), [anon_sym_register] = ACTIONS(1260), @@ -29443,10 +29336,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1260), [anon_sym__Noreturn] = ACTIONS(1260), [anon_sym_noreturn] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), [sym_primitive_type] = ACTIONS(1260), [anon_sym_enum] = ACTIONS(1260), [anon_sym_struct] = ACTIONS(1260), @@ -29487,7 +29376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [110] = { + [109] = { [sym_identifier] = ACTIONS(1264), [aux_sym_preproc_include_token1] = ACTIONS(1264), [aux_sym_preproc_def_token1] = ACTIONS(1264), @@ -29520,6 +29409,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1264), [anon_sym___vectorcall] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), [anon_sym_static] = ACTIONS(1264), [anon_sym_auto] = ACTIONS(1264), [anon_sym_register] = ACTIONS(1264), @@ -29533,10 +29426,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1264), [anon_sym__Noreturn] = ACTIONS(1264), [anon_sym_noreturn] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), [sym_primitive_type] = ACTIONS(1264), [anon_sym_enum] = ACTIONS(1264), [anon_sym_struct] = ACTIONS(1264), @@ -29577,7 +29466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [111] = { + [110] = { [sym_identifier] = ACTIONS(1268), [aux_sym_preproc_include_token1] = ACTIONS(1268), [aux_sym_preproc_def_token1] = ACTIONS(1268), @@ -29610,6 +29499,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1268), [anon_sym___vectorcall] = ACTIONS(1268), [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), [anon_sym_static] = ACTIONS(1268), [anon_sym_auto] = ACTIONS(1268), [anon_sym_register] = ACTIONS(1268), @@ -29623,10 +29516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1268), [anon_sym__Noreturn] = ACTIONS(1268), [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), [sym_primitive_type] = ACTIONS(1268), [anon_sym_enum] = ACTIONS(1268), [anon_sym_struct] = ACTIONS(1268), @@ -29667,7 +29556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [112] = { + [111] = { [sym_identifier] = ACTIONS(1272), [aux_sym_preproc_include_token1] = ACTIONS(1272), [aux_sym_preproc_def_token1] = ACTIONS(1272), @@ -29700,6 +29589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1272), [anon_sym___vectorcall] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), [anon_sym_static] = ACTIONS(1272), [anon_sym_auto] = ACTIONS(1272), [anon_sym_register] = ACTIONS(1272), @@ -29713,10 +29606,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1272), [anon_sym__Noreturn] = ACTIONS(1272), [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), [sym_primitive_type] = ACTIONS(1272), [anon_sym_enum] = ACTIONS(1272), [anon_sym_struct] = ACTIONS(1272), @@ -29757,7 +29646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [113] = { + [112] = { [sym_identifier] = ACTIONS(1276), [aux_sym_preproc_include_token1] = ACTIONS(1276), [aux_sym_preproc_def_token1] = ACTIONS(1276), @@ -29790,6 +29679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1276), [anon_sym___vectorcall] = ACTIONS(1276), [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), [anon_sym_static] = ACTIONS(1276), [anon_sym_auto] = ACTIONS(1276), [anon_sym_register] = ACTIONS(1276), @@ -29803,10 +29696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1276), [anon_sym__Noreturn] = ACTIONS(1276), [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), [sym_primitive_type] = ACTIONS(1276), [anon_sym_enum] = ACTIONS(1276), [anon_sym_struct] = ACTIONS(1276), @@ -29847,7 +29736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [114] = { + [113] = { [sym_identifier] = ACTIONS(1280), [aux_sym_preproc_include_token1] = ACTIONS(1280), [aux_sym_preproc_def_token1] = ACTIONS(1280), @@ -29880,6 +29769,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1280), [anon_sym___vectorcall] = ACTIONS(1280), [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), [anon_sym_static] = ACTIONS(1280), [anon_sym_auto] = ACTIONS(1280), [anon_sym_register] = ACTIONS(1280), @@ -29893,10 +29786,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1280), [anon_sym__Noreturn] = ACTIONS(1280), [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), [sym_primitive_type] = ACTIONS(1280), [anon_sym_enum] = ACTIONS(1280), [anon_sym_struct] = ACTIONS(1280), @@ -29937,7 +29826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [115] = { + [114] = { [sym_identifier] = ACTIONS(1284), [aux_sym_preproc_include_token1] = ACTIONS(1284), [aux_sym_preproc_def_token1] = ACTIONS(1284), @@ -29970,6 +29859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1284), [anon_sym___vectorcall] = ACTIONS(1284), [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), [anon_sym_static] = ACTIONS(1284), [anon_sym_auto] = ACTIONS(1284), [anon_sym_register] = ACTIONS(1284), @@ -29983,10 +29876,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1284), [anon_sym__Noreturn] = ACTIONS(1284), [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), [sym_primitive_type] = ACTIONS(1284), [anon_sym_enum] = ACTIONS(1284), [anon_sym_struct] = ACTIONS(1284), @@ -30027,7 +29916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [116] = { + [115] = { [sym_identifier] = ACTIONS(1288), [aux_sym_preproc_include_token1] = ACTIONS(1288), [aux_sym_preproc_def_token1] = ACTIONS(1288), @@ -30060,6 +29949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1288), [anon_sym___vectorcall] = ACTIONS(1288), [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), [anon_sym_static] = ACTIONS(1288), [anon_sym_auto] = ACTIONS(1288), [anon_sym_register] = ACTIONS(1288), @@ -30073,10 +29966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1288), [anon_sym__Noreturn] = ACTIONS(1288), [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), [sym_primitive_type] = ACTIONS(1288), [anon_sym_enum] = ACTIONS(1288), [anon_sym_struct] = ACTIONS(1288), @@ -30117,7 +30006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [117] = { + [116] = { [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -30150,6 +30039,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30163,10 +30056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1292), [anon_sym__Noreturn] = ACTIONS(1292), [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), [sym_primitive_type] = ACTIONS(1292), [anon_sym_enum] = ACTIONS(1292), [anon_sym_struct] = ACTIONS(1292), @@ -30207,7 +30096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [118] = { + [117] = { [sym_identifier] = ACTIONS(1296), [aux_sym_preproc_include_token1] = ACTIONS(1296), [aux_sym_preproc_def_token1] = ACTIONS(1296), @@ -30240,6 +30129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1296), [anon_sym___vectorcall] = ACTIONS(1296), [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), [anon_sym_static] = ACTIONS(1296), [anon_sym_auto] = ACTIONS(1296), [anon_sym_register] = ACTIONS(1296), @@ -30253,10 +30146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1296), [anon_sym__Noreturn] = ACTIONS(1296), [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), [sym_primitive_type] = ACTIONS(1296), [anon_sym_enum] = ACTIONS(1296), [anon_sym_struct] = ACTIONS(1296), @@ -30297,7 +30186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [119] = { + [118] = { [sym_identifier] = ACTIONS(1300), [aux_sym_preproc_include_token1] = ACTIONS(1300), [aux_sym_preproc_def_token1] = ACTIONS(1300), @@ -30330,6 +30219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1300), [anon_sym___vectorcall] = ACTIONS(1300), [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), [anon_sym_static] = ACTIONS(1300), [anon_sym_auto] = ACTIONS(1300), [anon_sym_register] = ACTIONS(1300), @@ -30343,10 +30236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1300), [anon_sym__Noreturn] = ACTIONS(1300), [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), [sym_primitive_type] = ACTIONS(1300), [anon_sym_enum] = ACTIONS(1300), [anon_sym_struct] = ACTIONS(1300), @@ -30387,7 +30276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [120] = { + [119] = { [sym_identifier] = ACTIONS(1304), [aux_sym_preproc_include_token1] = ACTIONS(1304), [aux_sym_preproc_def_token1] = ACTIONS(1304), @@ -30420,6 +30309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1304), [anon_sym___vectorcall] = ACTIONS(1304), [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), [anon_sym_static] = ACTIONS(1304), [anon_sym_auto] = ACTIONS(1304), [anon_sym_register] = ACTIONS(1304), @@ -30433,10 +30326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1304), [anon_sym__Noreturn] = ACTIONS(1304), [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), [sym_primitive_type] = ACTIONS(1304), [anon_sym_enum] = ACTIONS(1304), [anon_sym_struct] = ACTIONS(1304), @@ -30477,7 +30366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [121] = { + [120] = { [sym_identifier] = ACTIONS(1308), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1308), @@ -30510,6 +30399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1308), [anon_sym___vectorcall] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(1310), + [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), @@ -30523,10 +30416,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1308), [anon_sym__Noreturn] = ACTIONS(1308), [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), [sym_primitive_type] = ACTIONS(1308), [anon_sym_enum] = ACTIONS(1308), [anon_sym_struct] = ACTIONS(1308), @@ -30567,7 +30456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [122] = { + [121] = { [sym_identifier] = ACTIONS(1312), [aux_sym_preproc_include_token1] = ACTIONS(1312), [aux_sym_preproc_def_token1] = ACTIONS(1312), @@ -30600,6 +30489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1312), [anon_sym___vectorcall] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), [anon_sym_static] = ACTIONS(1312), [anon_sym_auto] = ACTIONS(1312), [anon_sym_register] = ACTIONS(1312), @@ -30613,10 +30506,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1312), [anon_sym__Noreturn] = ACTIONS(1312), [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), [sym_primitive_type] = ACTIONS(1312), [anon_sym_enum] = ACTIONS(1312), [anon_sym_struct] = ACTIONS(1312), @@ -30657,7 +30546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [123] = { + [122] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -30690,6 +30579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1316), [anon_sym___vectorcall] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), [anon_sym_static] = ACTIONS(1316), [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), @@ -30703,10 +30596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1316), [anon_sym__Noreturn] = ACTIONS(1316), [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), [sym_primitive_type] = ACTIONS(1316), [anon_sym_enum] = ACTIONS(1316), [anon_sym_struct] = ACTIONS(1316), @@ -30747,6 +30636,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, + [123] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [aux_sym_preproc_else_token1] = ACTIONS(1232), + [aux_sym_preproc_elif_token1] = ACTIONS(1232), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, [124] = { [sym_identifier] = ACTIONS(1320), [aux_sym_preproc_include_token1] = ACTIONS(1320), @@ -30780,6 +30759,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1320), [anon_sym___vectorcall] = ACTIONS(1320), [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), [anon_sym_static] = ACTIONS(1320), [anon_sym_auto] = ACTIONS(1320), [anon_sym_register] = ACTIONS(1320), @@ -30793,10 +30776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1320), [anon_sym__Noreturn] = ACTIONS(1320), [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), [sym_primitive_type] = ACTIONS(1320), [anon_sym_enum] = ACTIONS(1320), [anon_sym_struct] = ACTIONS(1320), @@ -30870,6 +30849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1324), [anon_sym___vectorcall] = ACTIONS(1324), [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), [anon_sym_static] = ACTIONS(1324), [anon_sym_auto] = ACTIONS(1324), [anon_sym_register] = ACTIONS(1324), @@ -30883,10 +30866,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1324), [anon_sym__Noreturn] = ACTIONS(1324), [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), [sym_primitive_type] = ACTIONS(1324), [anon_sym_enum] = ACTIONS(1324), [anon_sym_struct] = ACTIONS(1324), @@ -30960,6 +30939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1328), [anon_sym___vectorcall] = ACTIONS(1328), [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), [anon_sym_static] = ACTIONS(1328), [anon_sym_auto] = ACTIONS(1328), [anon_sym_register] = ACTIONS(1328), @@ -30973,10 +30956,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1328), [anon_sym__Noreturn] = ACTIONS(1328), [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), [sym_primitive_type] = ACTIONS(1328), [anon_sym_enum] = ACTIONS(1328), [anon_sym_struct] = ACTIONS(1328), @@ -31050,6 +31029,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1332), [anon_sym___vectorcall] = ACTIONS(1332), [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), [anon_sym_static] = ACTIONS(1332), [anon_sym_auto] = ACTIONS(1332), [anon_sym_register] = ACTIONS(1332), @@ -31063,10 +31046,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1332), [anon_sym__Noreturn] = ACTIONS(1332), [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), [sym_primitive_type] = ACTIONS(1332), [anon_sym_enum] = ACTIONS(1332), [anon_sym_struct] = ACTIONS(1332), @@ -31140,6 +31119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1336), [anon_sym___vectorcall] = ACTIONS(1336), [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), [anon_sym_static] = ACTIONS(1336), [anon_sym_auto] = ACTIONS(1336), [anon_sym_register] = ACTIONS(1336), @@ -31153,10 +31136,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1336), [anon_sym__Noreturn] = ACTIONS(1336), [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), [sym_primitive_type] = ACTIONS(1336), [anon_sym_enum] = ACTIONS(1336), [anon_sym_struct] = ACTIONS(1336), @@ -31198,96 +31177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [129] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [130] = { [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), @@ -31320,6 +31209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1340), [anon_sym___vectorcall] = ACTIONS(1340), [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), [anon_sym_static] = ACTIONS(1340), [anon_sym_auto] = ACTIONS(1340), [anon_sym_register] = ACTIONS(1340), @@ -31333,10 +31226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1340), [anon_sym__Noreturn] = ACTIONS(1340), [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), [sym_primitive_type] = ACTIONS(1340), [anon_sym_enum] = ACTIONS(1340), [anon_sym_struct] = ACTIONS(1340), @@ -31377,7 +31266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [131] = { + [130] = { [sym_identifier] = ACTIONS(1344), [aux_sym_preproc_include_token1] = ACTIONS(1344), [aux_sym_preproc_def_token1] = ACTIONS(1344), @@ -31410,6 +31299,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1344), [anon_sym___vectorcall] = ACTIONS(1344), [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), [anon_sym_static] = ACTIONS(1344), [anon_sym_auto] = ACTIONS(1344), [anon_sym_register] = ACTIONS(1344), @@ -31423,10 +31316,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1344), [anon_sym__Noreturn] = ACTIONS(1344), [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [131] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), [anon_sym_signed] = ACTIONS(1344), [anon_sym_unsigned] = ACTIONS(1344), [anon_sym_long] = ACTIONS(1344), [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), [sym_primitive_type] = ACTIONS(1344), [anon_sym_enum] = ACTIONS(1344), [anon_sym_struct] = ACTIONS(1344), @@ -31500,6 +31479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1348), [anon_sym___vectorcall] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), [anon_sym_static] = ACTIONS(1348), [anon_sym_auto] = ACTIONS(1348), [anon_sym_register] = ACTIONS(1348), @@ -31513,10 +31496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1348), [anon_sym__Noreturn] = ACTIONS(1348), [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), [sym_primitive_type] = ACTIONS(1348), [anon_sym_enum] = ACTIONS(1348), [anon_sym_struct] = ACTIONS(1348), @@ -31589,6 +31568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1352), [anon_sym___vectorcall] = ACTIONS(1352), [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), [anon_sym_static] = ACTIONS(1352), [anon_sym_auto] = ACTIONS(1352), [anon_sym_register] = ACTIONS(1352), @@ -31602,10 +31585,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1352), [anon_sym__Noreturn] = ACTIONS(1352), [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), [sym_primitive_type] = ACTIONS(1352), [anon_sym_enum] = ACTIONS(1352), [anon_sym_struct] = ACTIONS(1352), @@ -31678,6 +31657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1356), [anon_sym___vectorcall] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), [anon_sym_static] = ACTIONS(1356), [anon_sym_auto] = ACTIONS(1356), [anon_sym_register] = ACTIONS(1356), @@ -31691,10 +31674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1356), [anon_sym__Noreturn] = ACTIONS(1356), [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), [sym_primitive_type] = ACTIONS(1356), [anon_sym_enum] = ACTIONS(1356), [anon_sym_struct] = ACTIONS(1356), @@ -31767,6 +31746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1360), [anon_sym___vectorcall] = ACTIONS(1360), [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), [anon_sym_static] = ACTIONS(1360), [anon_sym_auto] = ACTIONS(1360), [anon_sym_register] = ACTIONS(1360), @@ -31780,10 +31763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1360), [anon_sym__Noreturn] = ACTIONS(1360), [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), [sym_primitive_type] = ACTIONS(1360), [anon_sym_enum] = ACTIONS(1360), [anon_sym_struct] = ACTIONS(1360), @@ -31856,6 +31835,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), [anon_sym_static] = ACTIONS(1364), [anon_sym_auto] = ACTIONS(1364), [anon_sym_register] = ACTIONS(1364), @@ -31869,10 +31852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1364), [anon_sym__Noreturn] = ACTIONS(1364), [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), [sym_primitive_type] = ACTIONS(1364), [anon_sym_enum] = ACTIONS(1364), [anon_sym_struct] = ACTIONS(1364), @@ -31913,541 +31892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [137] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [aux_sym_preproc_else_token1] = ACTIONS(1368), - [aux_sym_preproc_elif_token1] = ACTIONS(1368), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - }, - [138] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [aux_sym_preproc_else_token1] = ACTIONS(1372), - [aux_sym_preproc_elif_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [139] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [aux_sym_preproc_else_token1] = ACTIONS(1376), - [aux_sym_preproc_elif_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [140] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1380), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [aux_sym_preproc_else_token1] = ACTIONS(1384), - [aux_sym_preproc_elif_token1] = ACTIONS(1384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), - [sym_comment] = ACTIONS(3), - }, - [142] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - }, - [143] = { - [sym_else_clause] = STATE(154), + [sym_else_clause] = STATE(163), [sym_identifier] = ACTIONS(1190), [aux_sym_preproc_include_token1] = ACTIONS(1190), [aux_sym_preproc_def_token1] = ACTIONS(1190), @@ -32478,6 +31923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1190), [anon_sym___vectorcall] = ACTIONS(1190), [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), [anon_sym_static] = ACTIONS(1190), [anon_sym_auto] = ACTIONS(1190), [anon_sym_register] = ACTIONS(1190), @@ -32491,16 +31940,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1190), [anon_sym__Noreturn] = ACTIONS(1190), [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), [sym_primitive_type] = ACTIONS(1190), [anon_sym_enum] = ACTIONS(1190), [anon_sym_struct] = ACTIONS(1190), [anon_sym_union] = ACTIONS(1190), [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1368), [anon_sym_switch] = ACTIONS(1190), [anon_sym_case] = ACTIONS(1190), [anon_sym_default] = ACTIONS(1190), @@ -32535,6 +31980,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, + [138] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = 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), + }, + [139] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = 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), + }, + [140] = { + [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_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_thread_local] = 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_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, [144] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), @@ -32568,6 +32547,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32581,10 +32564,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1394), [anon_sym__Noreturn] = ACTIONS(1394), [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), [sym_primitive_type] = ACTIONS(1394), [anon_sym_enum] = ACTIONS(1394), [anon_sym_struct] = ACTIONS(1394), @@ -32657,6 +32636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32670,10 +32653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1398), [anon_sym__Noreturn] = ACTIONS(1398), [anon_sym_noreturn] = ACTIONS(1398), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), [sym_primitive_type] = ACTIONS(1398), [anon_sym_enum] = ACTIONS(1398), [anon_sym_struct] = ACTIONS(1398), @@ -32746,6 +32725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32759,10 +32742,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1402), [anon_sym__Noreturn] = ACTIONS(1402), [anon_sym_noreturn] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), [sym_primitive_type] = ACTIONS(1402), [anon_sym_enum] = ACTIONS(1402), [anon_sym_struct] = ACTIONS(1402), @@ -32835,6 +32814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32848,10 +32831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1406), [anon_sym__Noreturn] = ACTIONS(1406), [anon_sym_noreturn] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), [sym_primitive_type] = ACTIONS(1406), [anon_sym_enum] = ACTIONS(1406), [anon_sym_struct] = ACTIONS(1406), @@ -32924,6 +32903,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32937,10 +32920,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1410), [anon_sym__Noreturn] = ACTIONS(1410), [anon_sym_noreturn] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), [sym_primitive_type] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), [anon_sym_struct] = ACTIONS(1410), @@ -33013,6 +32992,10 @@ 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_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), @@ -33026,10 +33009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1414), [anon_sym__Noreturn] = ACTIONS(1414), [anon_sym_noreturn] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), [sym_primitive_type] = ACTIONS(1414), [anon_sym_enum] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1414), @@ -33102,6 +33081,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33115,10 +33098,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1418), [anon_sym__Noreturn] = ACTIONS(1418), [anon_sym_noreturn] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), [sym_primitive_type] = ACTIONS(1418), [anon_sym_enum] = ACTIONS(1418), [anon_sym_struct] = ACTIONS(1418), @@ -33191,6 +33170,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33204,10 +33187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1422), [anon_sym__Noreturn] = ACTIONS(1422), [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), [sym_primitive_type] = ACTIONS(1422), [anon_sym_enum] = ACTIONS(1422), [anon_sym_struct] = ACTIONS(1422), @@ -33280,6 +33259,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33293,10 +33276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1426), [anon_sym__Noreturn] = ACTIONS(1426), [anon_sym_noreturn] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), [sym_primitive_type] = ACTIONS(1426), [anon_sym_enum] = ACTIONS(1426), [anon_sym_struct] = ACTIONS(1426), @@ -33369,6 +33348,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33382,10 +33365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1430), [anon_sym__Noreturn] = ACTIONS(1430), [anon_sym_noreturn] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), [sym_primitive_type] = ACTIONS(1430), [anon_sym_enum] = ACTIONS(1430), [anon_sym_struct] = ACTIONS(1430), @@ -33426,7339 +33405,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [154] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [aux_sym_preproc_else_token1] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [aux_sym_preproc_else_token1] = ACTIONS(1196), - [aux_sym_preproc_elif_token1] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [aux_sym_preproc_else_token1] = ACTIONS(1268), + [aux_sym_preproc_elif_token1] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_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_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [aux_sym_preproc_else_token1] = ACTIONS(1224), - [aux_sym_preproc_elif_token1] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [aux_sym_preproc_else_token1] = ACTIONS(1228), - [aux_sym_preproc_elif_token1] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [aux_sym_preproc_else_token1] = ACTIONS(1236), - [aux_sym_preproc_elif_token1] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [aux_sym_preproc_else_token1] = ACTIONS(1240), - [aux_sym_preproc_elif_token1] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [aux_sym_preproc_else_token1] = ACTIONS(1216), - [aux_sym_preproc_elif_token1] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_else_token1] = ACTIONS(1244), - [aux_sym_preproc_elif_token1] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [aux_sym_preproc_else_token1] = ACTIONS(1248), - [aux_sym_preproc_elif_token1] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [aux_sym_preproc_else_token1] = ACTIONS(1252), - [aux_sym_preproc_elif_token1] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [aux_sym_preproc_else_token1] = ACTIONS(1256), - [aux_sym_preproc_elif_token1] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [aux_sym_preproc_else_token1] = ACTIONS(1260), - [aux_sym_preproc_elif_token1] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [aux_sym_preproc_else_token1] = ACTIONS(1264), - [aux_sym_preproc_elif_token1] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = 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_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_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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(1292), - [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_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = 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), - }, - [192] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [aux_sym_preproc_else_token1] = ACTIONS(1288), - [aux_sym_preproc_elif_token1] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [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_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_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = 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), - }, - [197] = { - [sym_else_clause] = STATE(375), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [aux_sym_preproc_else_token1] = ACTIONS(1384), - [aux_sym_preproc_elif_token1] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [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_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_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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_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), - }, - [201] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [aux_sym_preproc_else_token1] = ACTIONS(1360), - [aux_sym_preproc_elif_token1] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [aux_sym_preproc_else_token1] = ACTIONS(1372), - [aux_sym_preproc_elif_token1] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [204] = { - [sym_else_clause] = STATE(245), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token2] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [aux_sym_preproc_else_token1] = ACTIONS(1376), - [aux_sym_preproc_elif_token1] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_else_clause] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym__expression] = STATE(841), - [sym__expression_not_binary] = STATE(797), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(797), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(797), - [sym_call_expression] = STATE(797), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(797), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_initializer_list] = STATE(776), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_identifier] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1172), - [anon_sym_AMP_AMP] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_EQ] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_DASH_GT] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [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_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_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = 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), - }, - [210] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [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_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_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = 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_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_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [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_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_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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_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), - }, - [214] = { - [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_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_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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_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), - }, - [215] = { - [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_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = 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_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_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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_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), - }, - [216] = { - [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_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_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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_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), - }, - [217] = { - [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_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_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = 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), - }, - [218] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [aux_sym_preproc_else_token1] = ACTIONS(1348), - [aux_sym_preproc_elif_token1] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [aux_sym_preproc_else_token1] = ACTIONS(1368), - [aux_sym_preproc_elif_token1] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(116), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_case_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(256), - [sym_attributed_statement] = STATE(256), - [sym_labeled_statement] = STATE(256), - [sym_expression_statement] = STATE(256), - [sym_if_statement] = STATE(256), - [sym_switch_statement] = STATE(256), - [sym_case_statement] = STATE(256), - [sym_while_statement] = STATE(256), - [sym_do_statement] = STATE(256), - [sym_for_statement] = STATE(256), - [sym_return_statement] = STATE(256), - [sym_break_statement] = STATE(256), - [sym_continue_statement] = STATE(256), - [sym_goto_statement] = STATE(256), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(1964), - [sym_attributed_statement] = STATE(1964), - [sym_labeled_statement] = STATE(1964), - [sym_expression_statement] = STATE(1964), - [sym_if_statement] = STATE(1964), - [sym_switch_statement] = STATE(1964), - [sym_case_statement] = STATE(1964), - [sym_while_statement] = STATE(1964), - [sym_do_statement] = STATE(1964), - [sym_for_statement] = STATE(1964), - [sym_return_statement] = STATE(1964), - [sym_break_statement] = STATE(1964), - [sym_continue_statement] = STATE(1964), - [sym_goto_statement] = STATE(1964), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token2] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [aux_sym_preproc_else_token1] = ACTIONS(1216), + [aux_sym_preproc_elif_token1] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [157] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [aux_sym_preproc_else_token1] = ACTIONS(1232), + [aux_sym_preproc_elif_token1] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [158] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [aux_sym_preproc_else_token1] = ACTIONS(1232), + [aux_sym_preproc_elif_token1] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [238] = { + [159] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -40766,6 +33852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1316), [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), [sym_preproc_directive] = ACTIONS(1316), [anon_sym_LPAREN2] = ACTIONS(1318), [anon_sym_BANG] = ACTIONS(1318), @@ -40787,6 +33875,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1316), [anon_sym___vectorcall] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), [anon_sym_static] = ACTIONS(1316), [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), @@ -40800,10 +33892,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1316), [anon_sym__Noreturn] = ACTIONS(1316), [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), [sym_primitive_type] = ACTIONS(1316), [anon_sym_enum] = ACTIONS(1316), [anon_sym_struct] = ACTIONS(1316), @@ -40844,695 +33932,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(251), - [sym_attributed_statement] = STATE(251), - [sym_labeled_statement] = STATE(251), - [sym_expression_statement] = STATE(251), - [sym_if_statement] = STATE(251), - [sym_switch_statement] = STATE(251), - [sym_case_statement] = STATE(251), - [sym_while_statement] = STATE(251), - [sym_do_statement] = STATE(251), - [sym_for_statement] = STATE(251), - [sym_return_statement] = STATE(251), - [sym_break_statement] = STATE(251), - [sym_continue_statement] = STATE(251), - [sym_goto_statement] = STATE(251), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(252), - [sym_attributed_statement] = STATE(252), - [sym_labeled_statement] = STATE(252), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(252), - [sym_switch_statement] = STATE(252), - [sym_case_statement] = STATE(252), - [sym_while_statement] = STATE(252), - [sym_do_statement] = STATE(252), - [sym_for_statement] = STATE(252), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(252), - [sym_continue_statement] = STATE(252), - [sym_goto_statement] = STATE(252), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [160] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [161] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [247] = { + [162] = { [sym_identifier] = ACTIONS(1344), [aux_sym_preproc_include_token1] = ACTIONS(1344), [aux_sym_preproc_def_token1] = ACTIONS(1344), @@ -41540,6 +34116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1344), [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), [sym_preproc_directive] = ACTIONS(1344), [anon_sym_LPAREN2] = ACTIONS(1346), [anon_sym_BANG] = ACTIONS(1346), @@ -41561,6 +34139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1344), [anon_sym___vectorcall] = ACTIONS(1344), [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), [anon_sym_static] = ACTIONS(1344), [anon_sym_auto] = ACTIONS(1344), [anon_sym_register] = ACTIONS(1344), @@ -41574,10 +34156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1344), [anon_sym__Noreturn] = ACTIONS(1344), [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), [sym_primitive_type] = ACTIONS(1344), [anon_sym_enum] = ACTIONS(1344), [anon_sym_struct] = ACTIONS(1344), @@ -41604,1139 +34182,901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(1346), [anon_sym_L_SQUOTE] = ACTIONS(1346), [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(269), - [sym_attributed_statement] = STATE(269), - [sym_labeled_statement] = STATE(269), - [sym_expression_statement] = STATE(269), - [sym_if_statement] = STATE(269), - [sym_switch_statement] = STATE(269), - [sym_case_statement] = STATE(269), - [sym_while_statement] = STATE(269), - [sym_do_statement] = STATE(269), - [sym_for_statement] = STATE(269), - [sym_return_statement] = STATE(269), - [sym_break_statement] = STATE(269), - [sym_continue_statement] = STATE(269), - [sym_goto_statement] = STATE(269), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(281), - [sym_attributed_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [163] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [164] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [165] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [aux_sym_preproc_else_token1] = ACTIONS(1200), + [aux_sym_preproc_elif_token1] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [166] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [anon_sym_COMMA] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_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_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [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_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [167] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [168] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token2] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [aux_sym_preproc_else_token1] = ACTIONS(1220), + [aux_sym_preproc_elif_token1] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [169] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [170] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token2] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [aux_sym_preproc_else_token1] = ACTIONS(1208), + [aux_sym_preproc_elif_token1] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [171] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token2] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [aux_sym_preproc_else_token1] = ACTIONS(1204), + [aux_sym_preproc_elif_token1] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(115), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_case_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [172] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token2] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [aux_sym_preproc_else_token1] = ACTIONS(1224), + [aux_sym_preproc_elif_token1] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [261] = { + [173] = { [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), [aux_sym_preproc_def_token1] = ACTIONS(1244), @@ -42744,6 +35084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1244), [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [aux_sym_preproc_else_token1] = ACTIONS(1244), + [aux_sym_preproc_elif_token1] = ACTIONS(1244), [sym_preproc_directive] = ACTIONS(1244), [anon_sym_LPAREN2] = ACTIONS(1246), [anon_sym_BANG] = ACTIONS(1246), @@ -42765,6 +35107,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1244), [anon_sym___vectorcall] = ACTIONS(1244), [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), [anon_sym_static] = ACTIONS(1244), [anon_sym_auto] = ACTIONS(1244), [anon_sym_register] = ACTIONS(1244), @@ -42778,10 +35124,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1244), [anon_sym__Noreturn] = ACTIONS(1244), [anon_sym_noreturn] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), [sym_primitive_type] = ACTIONS(1244), [anon_sym_enum] = ACTIONS(1244), [anon_sym_struct] = ACTIONS(1244), @@ -42822,272 +35164,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(287), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(287), - [sym_expression_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_do_statement] = STATE(287), - [sym_for_statement] = STATE(287), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [174] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_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_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [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_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [175] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [aux_sym_preproc_else_token1] = ACTIONS(1332), + [aux_sym_preproc_elif_token1] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1230), + [176] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = 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_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [177] = { [sym_identifier] = ACTIONS(1228), [aux_sym_preproc_include_token1] = ACTIONS(1228), [aux_sym_preproc_def_token1] = ACTIONS(1228), [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token2] = ACTIONS(1228), [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [aux_sym_preproc_else_token1] = ACTIONS(1228), + [aux_sym_preproc_elif_token1] = ACTIONS(1228), [sym_preproc_directive] = ACTIONS(1228), [anon_sym_LPAREN2] = ACTIONS(1230), [anon_sym_BANG] = ACTIONS(1230), @@ -43109,6 +35459,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1228), [anon_sym___vectorcall] = ACTIONS(1228), [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), [anon_sym_static] = ACTIONS(1228), [anon_sym_auto] = ACTIONS(1228), [anon_sym_register] = ACTIONS(1228), @@ -43122,10 +35476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1228), [anon_sym__Noreturn] = ACTIONS(1228), [anon_sym_noreturn] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), [sym_primitive_type] = ACTIONS(1228), [anon_sym_enum] = ACTIONS(1228), [anon_sym_struct] = ACTIONS(1228), @@ -43166,1125 +35516,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [178] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [179] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token2] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [aux_sym_preproc_else_token1] = ACTIONS(1236), + [aux_sym_preproc_elif_token1] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [aux_sym_preproc_else_token1] = ACTIONS(1240), + [aux_sym_preproc_elif_token1] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [181] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [aux_sym_preproc_else_token1] = ACTIONS(1300), + [aux_sym_preproc_elif_token1] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [182] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [aux_sym_preproc_else_token1] = ACTIONS(1248), + [aux_sym_preproc_elif_token1] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [183] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [aux_sym_preproc_else_token1] = ACTIONS(1252), + [aux_sym_preproc_elif_token1] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [184] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [aux_sym_preproc_else_token1] = ACTIONS(1256), + [aux_sym_preproc_elif_token1] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [185] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token2] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [aux_sym_preproc_else_token1] = ACTIONS(1260), + [aux_sym_preproc_elif_token1] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [186] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [aux_sym_preproc_else_token1] = ACTIONS(1264), + [aux_sym_preproc_elif_token1] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [187] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [aux_sym_preproc_else_token1] = ACTIONS(1212), + [aux_sym_preproc_elif_token1] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [188] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [aux_sym_preproc_else_token1] = ACTIONS(1296), + [aux_sym_preproc_elif_token1] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [189] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [aux_sym_preproc_else_token1] = ACTIONS(1272), + [aux_sym_preproc_elif_token1] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_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_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [190] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token2] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [aux_sym_preproc_else_token1] = ACTIONS(1196), + [aux_sym_preproc_elif_token1] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), [sym_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [191] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [aux_sym_preproc_else_token1] = ACTIONS(1276), + [aux_sym_preproc_elif_token1] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [279] = { + [192] = { [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -44292,6 +36756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1292), [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), [sym_preproc_directive] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -44313,6 +36779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44326,10 +36796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1292), [anon_sym__Noreturn] = ACTIONS(1292), [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), [sym_primitive_type] = ACTIONS(1292), [anon_sym_enum] = ACTIONS(1292), [anon_sym_struct] = ACTIONS(1292), @@ -44370,100 +36836,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [193] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token2] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [aux_sym_preproc_else_token1] = ACTIONS(1280), + [aux_sym_preproc_elif_token1] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1286), + [194] = { [sym_identifier] = ACTIONS(1284), [aux_sym_preproc_include_token1] = ACTIONS(1284), [aux_sym_preproc_def_token1] = ACTIONS(1284), [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [aux_sym_preproc_else_token1] = ACTIONS(1284), + [aux_sym_preproc_elif_token1] = ACTIONS(1284), [sym_preproc_directive] = ACTIONS(1284), [anon_sym_LPAREN2] = ACTIONS(1286), [anon_sym_BANG] = ACTIONS(1286), @@ -44485,6 +36955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1284), [anon_sym___vectorcall] = ACTIONS(1284), [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), [anon_sym_static] = ACTIONS(1284), [anon_sym_auto] = ACTIONS(1284), [anon_sym_register] = ACTIONS(1284), @@ -44498,10 +36972,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1284), [anon_sym__Noreturn] = ACTIONS(1284), [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), [sym_primitive_type] = ACTIONS(1284), [anon_sym_enum] = ACTIONS(1284), [anon_sym_struct] = ACTIONS(1284), @@ -44542,763 +37012,1208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [195] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [aux_sym_preproc_else_token1] = ACTIONS(1288), + [aux_sym_preproc_elif_token1] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [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_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_thread_local] = 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_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), + }, + [197] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [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_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_thread_local] = 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_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), + }, + [199] = { + [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_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_thread_local] = 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_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = 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), }, - [283] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [201] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(295), - [sym_attributed_statement] = STATE(295), - [sym_labeled_statement] = STATE(295), - [sym_expression_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(295), - [sym_case_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(295), - [sym_for_statement] = STATE(295), - [sym_return_statement] = STATE(295), - [sym_break_statement] = STATE(295), - [sym_continue_statement] = STATE(295), - [sym_goto_statement] = STATE(295), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [202] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(299), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(299), - [sym_expression_statement] = STATE(299), - [sym_if_statement] = STATE(299), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(299), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(299), - [sym_for_statement] = STATE(299), - [sym_return_statement] = STATE(299), - [sym_break_statement] = STATE(299), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(299), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [203] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [204] = { + [sym_else_clause] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [205] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [288] = { - [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_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_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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(1292), - [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_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = 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), + [206] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = 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), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [207] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = 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_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_thread_local] = 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_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), }, - [290] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), + [208] = { + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(808), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(808), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(808), + [sym_call_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(808), + [sym_initializer_list] = STATE(768), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_identifier] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(1172), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1446), [anon_sym_offsetof] = ACTIONS(81), [anon_sym__Generic] = ACTIONS(83), [anon_sym_asm] = ACTIONS(85), [anon_sym___asm__] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), @@ -45316,1164 +38231,1692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [209] = { + [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_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_thread_local] = 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_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), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [210] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [211] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = 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(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [212] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [213] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = 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), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [214] = { + [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_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_thread_local] = 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_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = 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), + }, + [215] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [216] = { + [sym_else_clause] = STATE(369), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [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_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = 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_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_thread_local] = 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_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), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [218] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [219] = { + [sym_else_clause] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [220] = { + [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_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_thread_local] = 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_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), + }, + [221] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [222] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(305), - [sym_attributed_statement] = STATE(305), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [223] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_attribute_declaration] = STATE(322), - [sym_compound_statement] = STATE(321), - [sym_attributed_statement] = STATE(321), - [sym_labeled_statement] = STATE(321), - [sym_expression_statement] = STATE(321), - [sym_if_statement] = STATE(321), - [sym_switch_statement] = STATE(321), - [sym_case_statement] = STATE(321), - [sym_while_statement] = STATE(321), - [sym_do_statement] = STATE(321), - [sym_for_statement] = STATE(321), - [sym_return_statement] = STATE(321), - [sym_break_statement] = STATE(321), - [sym_continue_statement] = STATE(321), - [sym_goto_statement] = STATE(321), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [224] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token2] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(91), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [226] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(102), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_case_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [227] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [228] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(317), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46482,20 +39925,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(117), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -46520,391 +39963,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [229] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_attribute_declaration] = STATE(306), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [230] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token2] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [sym_attribute_declaration] = STATE(231), + [sym_compound_statement] = STATE(176), + [sym_attributed_statement] = STATE(176), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1483), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_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_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [232] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [233] = { + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token2] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token2] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(197), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [235] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token2] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(156), + [sym_attributed_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_case_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46912,20 +40613,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -46950,219 +40651,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_attribute_declaration] = STATE(310), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(311), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(311), - [sym_if_statement] = STATE(311), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(311), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(311), - [sym_for_statement] = STATE(311), - [sym_return_statement] = STATE(311), - [sym_break_statement] = STATE(311), - [sym_continue_statement] = STATE(311), - [sym_goto_statement] = STATE(311), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_case] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), - [sym_comment] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [237] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(1946), - [sym_attributed_statement] = STATE(1946), - [sym_labeled_statement] = STATE(1946), - [sym_expression_statement] = STATE(1946), - [sym_if_statement] = STATE(1946), - [sym_switch_statement] = STATE(1946), - [sym_case_statement] = STATE(1946), - [sym_while_statement] = STATE(1946), - [sym_do_statement] = STATE(1946), - [sym_for_statement] = STATE(1946), - [sym_return_statement] = STATE(1946), - [sym_break_statement] = STATE(1946), - [sym_continue_statement] = STATE(1946), - [sym_goto_statement] = STATE(1946), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [238] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47170,16 +40785,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -47201,484 +40816,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u_DQUOTE] = ACTIONS(91), [anon_sym_U_DQUOTE] = ACTIONS(91), [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [sym_attribute_declaration] = STATE(399), - [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__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(343), - [sym_attributed_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [240] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(356), - [sym_attributed_statement] = STATE(356), - [sym_labeled_statement] = STATE(356), - [sym_expression_statement] = STATE(356), - [sym_if_statement] = STATE(356), - [sym_switch_statement] = STATE(356), - [sym_case_statement] = STATE(356), - [sym_while_statement] = STATE(356), - [sym_do_statement] = STATE(356), - [sym_for_statement] = STATE(356), - [sym_return_statement] = STATE(356), - [sym_break_statement] = STATE(356), - [sym_continue_statement] = STATE(356), - [sym_goto_statement] = STATE(356), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [241] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47686,20 +41043,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(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47724,47 +41081,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(109), - [sym_attributed_statement] = STATE(109), - [sym_labeled_statement] = STATE(109), - [sym_expression_statement] = STATE(109), - [sym_if_statement] = STATE(109), - [sym_switch_statement] = STATE(109), - [sym_case_statement] = STATE(109), - [sym_while_statement] = STATE(109), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(109), - [sym_return_statement] = STATE(109), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(109), - [sym_goto_statement] = STATE(109), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [242] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(248), + [sym_attributed_statement] = STATE(248), + [sym_labeled_statement] = STATE(248), + [sym_expression_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_switch_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_return_statement] = STATE(248), + [sym_break_statement] = STATE(248), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(248), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47772,20 +41129,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(117), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47810,47 +41167,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [243] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(247), + [sym_labeled_statement] = STATE(247), + [sym_expression_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_switch_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_return_statement] = STATE(247), + [sym_break_statement] = STATE(247), + [sym_continue_statement] = STATE(247), + [sym_goto_statement] = STATE(247), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47858,20 +41301,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(117), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47896,305 +41339,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [245] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_attribute_declaration] = STATE(322), - [sym_compound_statement] = STATE(321), - [sym_attributed_statement] = STATE(321), - [sym_labeled_statement] = STATE(321), - [sym_expression_statement] = STATE(321), - [sym_if_statement] = STATE(321), - [sym_switch_statement] = STATE(321), - [sym_case_statement] = STATE(321), - [sym_while_statement] = STATE(321), - [sym_do_statement] = STATE(321), - [sym_for_statement] = STATE(321), - [sym_return_statement] = STATE(321), - [sym_break_statement] = STATE(321), - [sym_continue_statement] = STATE(321), - [sym_goto_statement] = STATE(321), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(111), - [sym_attributed_statement] = STATE(111), - [sym_labeled_statement] = STATE(111), - [sym_expression_statement] = STATE(111), - [sym_if_statement] = STATE(111), - [sym_switch_statement] = STATE(111), - [sym_case_statement] = STATE(111), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(111), - [sym_for_statement] = STATE(111), - [sym_return_statement] = STATE(111), - [sym_break_statement] = STATE(111), - [sym_continue_statement] = STATE(111), - [sym_goto_statement] = STATE(111), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [249] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(239), + [sym_attributed_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_case_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_goto_statement] = STATE(239), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48202,20 +41731,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_attribute_declaration] = STATE(439), + [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__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -48240,133 +41855,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(112), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_case_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [251] = { + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token2] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token2] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token2] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(113), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [257] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_attribute_declaration] = STATE(439), + [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__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48374,20 +42505,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(117), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -48412,11 +42543,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [327] = { + [259] = { [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), [aux_sym_preproc_def_token1] = ACTIONS(1244), [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token2] = ACTIONS(1244), [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), [sym_preproc_directive] = ACTIONS(1244), @@ -48440,7 +42572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1244), [anon_sym___vectorcall] = ACTIONS(1244), [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), [anon_sym_static] = ACTIONS(1244), [anon_sym_auto] = ACTIONS(1244), [anon_sym_register] = ACTIONS(1244), @@ -48454,10 +42589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1244), [anon_sym__Noreturn] = ACTIONS(1244), [anon_sym_noreturn] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), [sym_primitive_type] = ACTIONS(1244), [anon_sym_enum] = ACTIONS(1244), [anon_sym_struct] = ACTIONS(1244), @@ -48498,133 +42629,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(114), - [sym_attributed_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [260] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(294), - [sym_attributed_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_case_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_goto_statement] = STATE(294), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [264] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(284), + [sym_attributed_statement] = STATE(284), + [sym_labeled_statement] = STATE(284), + [sym_expression_statement] = STATE(284), + [sym_if_statement] = STATE(284), + [sym_switch_statement] = STATE(284), + [sym_case_statement] = STATE(284), + [sym_while_statement] = STATE(284), + [sym_do_statement] = STATE(284), + [sym_for_statement] = STATE(284), + [sym_return_statement] = STATE(284), + [sym_break_statement] = STATE(284), + [sym_continue_statement] = STATE(284), + [sym_goto_statement] = STATE(284), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48632,16 +43021,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -48670,219 +43059,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(1925), - [sym_attributed_statement] = STATE(1925), - [sym_labeled_statement] = STATE(1925), - [sym_expression_statement] = STATE(1925), - [sym_if_statement] = STATE(1925), - [sym_switch_statement] = STATE(1925), - [sym_case_statement] = STATE(1925), - [sym_while_statement] = STATE(1925), - [sym_do_statement] = STATE(1925), - [sym_for_statement] = STATE(1925), - [sym_return_statement] = STATE(1925), - [sym_break_statement] = STATE(1925), - [sym_continue_statement] = STATE(1925), - [sym_goto_statement] = STATE(1925), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [265] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_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_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [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_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(117), - [sym_attributed_statement] = STATE(117), - [sym_labeled_statement] = STATE(117), - [sym_expression_statement] = STATE(117), - [sym_if_statement] = STATE(117), - [sym_switch_statement] = STATE(117), - [sym_case_statement] = STATE(117), - [sym_while_statement] = STATE(117), - [sym_do_statement] = STATE(117), - [sym_for_statement] = STATE(117), - [sym_return_statement] = STATE(117), - [sym_break_statement] = STATE(117), - [sym_continue_statement] = STATE(117), - [sym_goto_statement] = STATE(117), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [266] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_attribute_declaration] = STATE(399), - [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__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [267] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48890,20 +43279,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(117), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -48928,47 +43317,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(119), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [268] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(171), + [sym_attributed_statement] = STATE(171), + [sym_labeled_statement] = STATE(171), + [sym_expression_statement] = STATE(171), + [sym_if_statement] = STATE(171), + [sym_switch_statement] = STATE(171), + [sym_case_statement] = STATE(171), + [sym_while_statement] = STATE(171), + [sym_do_statement] = STATE(171), + [sym_for_statement] = STATE(171), + [sym_return_statement] = STATE(171), + [sym_break_statement] = STATE(171), + [sym_continue_statement] = STATE(171), + [sym_goto_statement] = STATE(171), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48976,20 +43451,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -49014,133 +43489,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_attribute_declaration] = STATE(399), - [sym_compound_statement] = STATE(120), - [sym_attributed_statement] = STATE(120), - [sym_labeled_statement] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym_if_statement] = STATE(120), - [sym_switch_statement] = STATE(120), - [sym_case_statement] = STATE(120), - [sym_while_statement] = STATE(120), - [sym_do_statement] = STATE(120), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(120), - [sym_break_statement] = STATE(120), - [sym_continue_statement] = STATE(120), - [sym_goto_statement] = STATE(120), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [270] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(137), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_case_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49148,20 +43537,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -49186,219 +43575,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(528), - [sym_attributed_statement] = STATE(528), - [sym_labeled_statement] = STATE(528), - [sym_expression_statement] = STATE(528), - [sym_if_statement] = STATE(528), - [sym_switch_statement] = STATE(528), - [sym_case_statement] = STATE(528), - [sym_while_statement] = STATE(528), - [sym_do_statement] = STATE(528), - [sym_for_statement] = STATE(528), - [sym_return_statement] = STATE(528), - [sym_break_statement] = STATE(528), - [sym_continue_statement] = STATE(528), - [sym_goto_statement] = STATE(528), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [271] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(1962), + [sym_attributed_statement] = STATE(1962), + [sym_labeled_statement] = STATE(1962), + [sym_expression_statement] = STATE(1962), + [sym_if_statement] = STATE(1962), + [sym_switch_statement] = STATE(1962), + [sym_case_statement] = STATE(1962), + [sym_while_statement] = STATE(1962), + [sym_do_statement] = STATE(1962), + [sym_for_statement] = STATE(1962), + [sym_return_statement] = STATE(1962), + [sym_break_statement] = STATE(1962), + [sym_continue_statement] = STATE(1962), + [sym_goto_statement] = STATE(1962), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49409,13 +43626,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1138), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -49444,47 +43661,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [272] = { + [sym_attribute_declaration] = STATE(443), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49495,13 +43712,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1138), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -49530,47 +43747,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(278), - [sym_attributed_statement] = STATE(278), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [273] = { + [sym_attribute_declaration] = STATE(231), + [sym_compound_statement] = STATE(176), + [sym_attributed_statement] = STATE(176), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49578,20 +43795,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -49616,98 +43833,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_attribute_declaration] = STATE(341), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(311), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(311), - [sym_if_statement] = STATE(311), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(311), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(311), - [sym_for_statement] = STATE(311), - [sym_return_statement] = STATE(311), - [sym_break_statement] = STATE(311), - [sym_continue_statement] = STATE(311), - [sym_goto_statement] = STATE(311), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), + [274] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = 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_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token2] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), [sym_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1318), + [281] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), [sym_preproc_directive] = ACTIONS(1316), @@ -49731,6 +44464,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1316), [anon_sym___vectorcall] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), [anon_sym_static] = ACTIONS(1316), [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), @@ -49744,10 +44481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1316), [anon_sym__Noreturn] = ACTIONS(1316), [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), [sym_primitive_type] = ACTIONS(1316), [anon_sym_enum] = ACTIONS(1316), [anon_sym_struct] = ACTIONS(1316), @@ -49788,93 +44521,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [282] = { + [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_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_thread_local] = 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(1292), + [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_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = 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), + }, + [283] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(181), + [sym_attributed_statement] = STATE(181), + [sym_labeled_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_switch_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [344] = { + [286] = { + [ts_builtin_sym_end] = ACTIONS(1234), [sym_identifier] = ACTIONS(1232), [aux_sym_preproc_include_token1] = ACTIONS(1232), [aux_sym_preproc_def_token1] = ACTIONS(1232), @@ -49902,7 +44894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1232), [anon_sym___vectorcall] = ACTIONS(1232), [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), [anon_sym_static] = ACTIONS(1232), [anon_sym_auto] = ACTIONS(1232), [anon_sym_register] = ACTIONS(1232), @@ -49916,10 +44911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1232), [anon_sym__Noreturn] = ACTIONS(1232), [anon_sym_noreturn] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), [sym_primitive_type] = ACTIONS(1232), [anon_sym_enum] = ACTIONS(1232), [anon_sym_struct] = ACTIONS(1232), @@ -49960,47 +44951,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(278), - [sym_attributed_statement] = STATE(278), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50008,7 +45085,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_SEMI] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(55), @@ -50046,305 +45123,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(251), - [sym_attributed_statement] = STATE(251), - [sym_labeled_statement] = STATE(251), - [sym_expression_statement] = STATE(251), - [sym_if_statement] = STATE(251), - [sym_switch_statement] = STATE(251), - [sym_case_statement] = STATE(251), - [sym_while_statement] = STATE(251), - [sym_do_statement] = STATE(251), - [sym_for_statement] = STATE(251), - [sym_return_statement] = STATE(251), - [sym_break_statement] = STATE(251), - [sym_continue_statement] = STATE(251), - [sym_goto_statement] = STATE(251), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(252), - [sym_attributed_statement] = STATE(252), - [sym_labeled_statement] = STATE(252), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(252), - [sym_switch_statement] = STATE(252), - [sym_case_statement] = STATE(252), - [sym_while_statement] = STATE(252), - [sym_do_statement] = STATE(252), - [sym_for_statement] = STATE(252), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(252), - [sym_continue_statement] = STATE(252), - [sym_goto_statement] = STATE(252), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [289] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(300), + [sym_attributed_statement] = STATE(300), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_switch_statement] = STATE(300), + [sym_case_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(300), + [sym_continue_statement] = STATE(300), + [sym_goto_statement] = STATE(300), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50352,20 +45171,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50390,391 +45209,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [290] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token2] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(269), - [sym_attributed_statement] = STATE(269), - [sym_labeled_statement] = STATE(269), - [sym_expression_statement] = STATE(269), - [sym_if_statement] = STATE(269), - [sym_switch_statement] = STATE(269), - [sym_case_statement] = STATE(269), - [sym_while_statement] = STATE(269), - [sym_do_statement] = STATE(269), - [sym_for_statement] = STATE(269), - [sym_return_statement] = STATE(269), - [sym_break_statement] = STATE(269), - [sym_continue_statement] = STATE(269), - [sym_goto_statement] = STATE(269), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [291] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(281), - [sym_attributed_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [292] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(287), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(287), - [sym_expression_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_do_statement] = STATE(287), - [sym_for_statement] = STATE(287), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [294] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(299), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(299), + [sym_expression_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_do_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(299), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(299), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50782,20 +45601,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50820,266 +45639,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [295] = { + [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_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_thread_local] = 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(1292), + [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_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = 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), }, - [357] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [296] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(298), + [sym_attributed_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_case_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(366), + [297] = { + [sym_attribute_declaration] = STATE(228), [sym_compound_statement] = STATE(295), [sym_attributed_statement] = STATE(295), [sym_labeled_statement] = STATE(295), @@ -51094,31 +45827,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(295), [sym_continue_statement] = STATE(295), [sym_goto_statement] = STATE(295), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51126,20 +45859,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51164,47 +45897,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(299), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(299), - [sym_expression_statement] = STATE(299), - [sym_if_statement] = STATE(299), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(299), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(299), - [sym_for_statement] = STATE(299), - [sym_return_statement] = STATE(299), - [sym_break_statement] = STATE(299), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(299), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [298] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51212,20 +46203,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51250,305 +46241,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [302] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [304] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [305] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(305), - [sym_attributed_statement] = STATE(305), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [306] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51556,20 +46719,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51594,11 +46757,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [364] = { + [308] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [309] = { [sym_identifier] = ACTIONS(1344), [aux_sym_preproc_include_token1] = ACTIONS(1344), [aux_sym_preproc_def_token1] = ACTIONS(1344), [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), [sym_preproc_directive] = ACTIONS(1344), @@ -51622,7 +46872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1344), [anon_sym___vectorcall] = ACTIONS(1344), [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), [anon_sym_static] = ACTIONS(1344), [anon_sym_auto] = ACTIONS(1344), [anon_sym_register] = ACTIONS(1344), @@ -51636,10 +46889,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1344), [anon_sym__Noreturn] = ACTIONS(1344), [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [310] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), [anon_sym_signed] = ACTIONS(1344), [anon_sym_unsigned] = ACTIONS(1344), [anon_sym_long] = ACTIONS(1344), [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), [sym_primitive_type] = ACTIONS(1344), [anon_sym_enum] = ACTIONS(1344), [anon_sym_struct] = ACTIONS(1344), @@ -51680,133 +47015,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [311] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_attribute_declaration] = STATE(341), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(311), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(311), - [sym_if_statement] = STATE(311), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(311), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(311), - [sym_for_statement] = STATE(311), - [sym_return_statement] = STATE(311), - [sym_break_statement] = STATE(311), - [sym_continue_statement] = STATE(311), - [sym_goto_statement] = STATE(311), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [312] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51814,20 +47149,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51852,47 +47187,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [313] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51900,20 +47235,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(1050), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51938,47 +47273,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(206), - [sym_attributed_statement] = STATE(206), - [sym_labeled_statement] = STATE(206), - [sym_expression_statement] = STATE(206), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(206), - [sym_case_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_do_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_return_statement] = STATE(206), - [sym_break_statement] = STATE(206), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(206), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [314] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51986,20 +47321,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(1050), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52024,47 +47359,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(143), - [sym_attributed_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_case_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [315] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(340), + [sym_attributed_statement] = STATE(340), + [sym_labeled_statement] = STATE(340), + [sym_expression_statement] = STATE(340), + [sym_if_statement] = STATE(340), + [sym_switch_statement] = STATE(340), + [sym_case_statement] = STATE(340), + [sym_while_statement] = STATE(340), + [sym_do_statement] = STATE(340), + [sym_for_statement] = STATE(340), + [sym_return_statement] = STATE(340), + [sym_break_statement] = STATE(340), + [sym_continue_statement] = STATE(340), + [sym_goto_statement] = STATE(340), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52072,20 +47407,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52110,47 +47445,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(169), - [sym_attributed_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [316] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52158,20 +47493,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(183), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52196,47 +47531,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(162), - [sym_attributed_statement] = STATE(162), - [sym_labeled_statement] = STATE(162), - [sym_expression_statement] = STATE(162), - [sym_if_statement] = STATE(162), - [sym_switch_statement] = STATE(162), - [sym_case_statement] = STATE(162), - [sym_while_statement] = STATE(162), - [sym_do_statement] = STATE(162), - [sym_for_statement] = STATE(162), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(162), - [sym_continue_statement] = STATE(162), - [sym_goto_statement] = STATE(162), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [317] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52244,20 +47665,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(183), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52282,219 +47703,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(372), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(386), - [sym_attributed_statement] = STATE(386), - [sym_labeled_statement] = STATE(386), - [sym_expression_statement] = STATE(386), - [sym_if_statement] = STATE(386), - [sym_switch_statement] = STATE(386), - [sym_case_statement] = STATE(386), - [sym_while_statement] = STATE(386), - [sym_do_statement] = STATE(386), - [sym_for_statement] = STATE(386), - [sym_return_statement] = STATE(386), - [sym_break_statement] = STATE(386), - [sym_continue_statement] = STATE(386), - [sym_goto_statement] = STATE(386), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [319] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(224), + [sym_attributed_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52502,20 +47751,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(454), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52540,219 +47789,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(175), - [sym_attributed_statement] = STATE(175), - [sym_labeled_statement] = STATE(175), - [sym_expression_statement] = STATE(175), - [sym_if_statement] = STATE(175), - [sym_switch_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_do_statement] = STATE(175), - [sym_for_statement] = STATE(175), - [sym_return_statement] = STATE(175), - [sym_break_statement] = STATE(175), - [sym_continue_statement] = STATE(175), - [sym_goto_statement] = STATE(175), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [320] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52760,20 +47837,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(183), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52798,93 +47875,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_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_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [321] = { + [sym_attribute_declaration] = STATE(321), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [379] = { + [322] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(1944), + [sym_attributed_statement] = STATE(1944), + [sym_labeled_statement] = STATE(1944), + [sym_expression_statement] = STATE(1944), + [sym_if_statement] = STATE(1944), + [sym_switch_statement] = STATE(1944), + [sym_case_statement] = STATE(1944), + [sym_while_statement] = STATE(1944), + [sym_do_statement] = STATE(1944), + [sym_for_statement] = STATE(1944), + [sym_return_statement] = STATE(1944), + [sym_break_statement] = STATE(1944), + [sym_continue_statement] = STATE(1944), + [sym_goto_statement] = STATE(1944), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [ts_builtin_sym_end] = ACTIONS(1338), [sym_identifier] = ACTIONS(1336), [aux_sym_preproc_include_token1] = ACTIONS(1336), [aux_sym_preproc_def_token1] = ACTIONS(1336), @@ -52912,7 +48076,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1336), [anon_sym___vectorcall] = ACTIONS(1336), [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), [anon_sym_static] = ACTIONS(1336), [anon_sym_auto] = ACTIONS(1336), [anon_sym_register] = ACTIONS(1336), @@ -52926,10 +48093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1336), [anon_sym__Noreturn] = ACTIONS(1336), [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), [sym_primitive_type] = ACTIONS(1336), [anon_sym_enum] = ACTIONS(1336), [anon_sym_struct] = ACTIONS(1336), @@ -52970,7 +48133,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [380] = { + [324] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(254), + [sym_attributed_statement] = STATE(254), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_attribute_declaration] = STATE(228), + [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__expression] = STATE(1087), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1762), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [327] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -52999,6 +48420,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1318), [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), [anon_sym_static] = ACTIONS(1316), [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), @@ -53012,10 +48437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1316), [anon_sym__Noreturn] = ACTIONS(1316), [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), [sym_primitive_type] = ACTIONS(1316), [anon_sym_enum] = ACTIONS(1316), [anon_sym_struct] = ACTIONS(1316), @@ -53056,133 +48477,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [328] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(216), + [sym_attributed_statement] = STATE(216), + [sym_labeled_statement] = STATE(216), + [sym_expression_statement] = STATE(216), + [sym_if_statement] = STATE(216), + [sym_switch_statement] = STATE(216), + [sym_case_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_do_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_return_statement] = STATE(216), + [sym_break_statement] = STATE(216), + [sym_continue_statement] = STATE(216), + [sym_goto_statement] = STATE(216), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(1923), + [sym_attributed_statement] = STATE(1923), + [sym_labeled_statement] = STATE(1923), + [sym_expression_statement] = STATE(1923), + [sym_if_statement] = STATE(1923), + [sym_switch_statement] = STATE(1923), + [sym_case_statement] = STATE(1923), + [sym_while_statement] = STATE(1923), + [sym_do_statement] = STATE(1923), + [sym_for_statement] = STATE(1923), + [sym_return_statement] = STATE(1923), + [sym_break_statement] = STATE(1923), + [sym_continue_statement] = STATE(1923), + [sym_goto_statement] = STATE(1923), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_attribute_declaration] = STATE(315), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(185), - [sym_attributed_statement] = STATE(185), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(185), - [sym_if_statement] = STATE(185), - [sym_switch_statement] = STATE(185), - [sym_case_statement] = STATE(185), - [sym_while_statement] = STATE(185), - [sym_do_statement] = STATE(185), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(185), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(185), - [sym_goto_statement] = STATE(185), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [332] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(94), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53190,20 +48869,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -53228,47 +48907,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [333] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1639), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53276,20 +48955,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -53314,305 +48993,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [334] = { + [sym_attribute_declaration] = STATE(333), + [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__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [338] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [386] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_do] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_goto] = ACTIONS(1680), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_attribute_declaration] = STATE(430), - [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__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [339] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(354), + [sym_attributed_statement] = STATE(354), + [sym_labeled_statement] = STATE(354), + [sym_expression_statement] = STATE(354), + [sym_if_statement] = STATE(354), + [sym_switch_statement] = STATE(354), + [sym_case_statement] = STATE(354), + [sym_while_statement] = STATE(354), + [sym_do_statement] = STATE(354), + [sym_for_statement] = STATE(354), + [sym_return_statement] = STATE(354), + [sym_break_statement] = STATE(354), + [sym_continue_statement] = STATE(354), + [sym_goto_statement] = STATE(354), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53620,20 +49471,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -53658,219 +49509,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(190), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(190), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_switch_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_do_statement] = STATE(190), - [sym_for_statement] = STATE(190), - [sym_return_statement] = STATE(190), - [sym_break_statement] = STATE(190), - [sym_continue_statement] = STATE(190), - [sym_goto_statement] = STATE(190), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [340] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = 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_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(192), - [sym_attributed_statement] = STATE(192), - [sym_labeled_statement] = STATE(192), - [sym_expression_statement] = STATE(192), - [sym_if_statement] = STATE(192), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(192), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(192), - [sym_for_statement] = STATE(192), - [sym_return_statement] = STATE(192), - [sym_break_statement] = STATE(192), - [sym_continue_statement] = STATE(192), - [sym_goto_statement] = STATE(192), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [341] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(340), + [sym_attributed_statement] = STATE(340), + [sym_labeled_statement] = STATE(340), + [sym_expression_statement] = STATE(340), + [sym_if_statement] = STATE(340), + [sym_switch_statement] = STATE(340), + [sym_case_statement] = STATE(340), + [sym_while_statement] = STATE(340), + [sym_do_statement] = STATE(340), + [sym_for_statement] = STATE(340), + [sym_return_statement] = STATE(340), + [sym_break_statement] = STATE(340), + [sym_continue_statement] = STATE(340), + [sym_goto_statement] = STATE(340), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_goto] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_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_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [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_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(193), - [sym_attributed_statement] = STATE(193), - [sym_labeled_statement] = STATE(193), - [sym_expression_statement] = STATE(193), - [sym_if_statement] = STATE(193), - [sym_switch_statement] = STATE(193), - [sym_case_statement] = STATE(193), - [sym_while_statement] = STATE(193), - [sym_do_statement] = STATE(193), - [sym_for_statement] = STATE(193), - [sym_return_statement] = STATE(193), - [sym_break_statement] = STATE(193), - [sym_continue_statement] = STATE(193), - [sym_goto_statement] = STATE(193), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [344] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53878,20 +49901,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -53916,47 +49939,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(194), - [sym_attributed_statement] = STATE(194), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(194), - [sym_if_statement] = STATE(194), - [sym_switch_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_return_statement] = STATE(194), - [sym_break_statement] = STATE(194), - [sym_continue_statement] = STATE(194), - [sym_goto_statement] = STATE(194), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [345] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54002,47 +50111,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(1979), - [sym_attributed_statement] = STATE(1979), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [347] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54053,13 +50162,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1138), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1142), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -54088,47 +50197,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(191), - [sym_attributed_statement] = STATE(191), - [sym_labeled_statement] = STATE(191), - [sym_expression_statement] = STATE(191), - [sym_if_statement] = STATE(191), - [sym_switch_statement] = STATE(191), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(191), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(191), - [sym_return_statement] = STATE(191), - [sym_break_statement] = STATE(191), - [sym_continue_statement] = STATE(191), - [sym_goto_statement] = STATE(191), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [348] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(1977), + [sym_attributed_statement] = STATE(1977), + [sym_labeled_statement] = STATE(1977), + [sym_expression_statement] = STATE(1977), + [sym_if_statement] = STATE(1977), + [sym_switch_statement] = STATE(1977), + [sym_case_statement] = STATE(1977), + [sym_while_statement] = STATE(1977), + [sym_do_statement] = STATE(1977), + [sym_for_statement] = STATE(1977), + [sym_return_statement] = STATE(1977), + [sym_break_statement] = STATE(1977), + [sym_continue_statement] = STATE(1977), + [sym_goto_statement] = STATE(1977), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54136,20 +50245,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54174,47 +50283,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(187), - [sym_attributed_statement] = STATE(187), - [sym_labeled_statement] = STATE(187), - [sym_expression_statement] = STATE(187), - [sym_if_statement] = STATE(187), - [sym_switch_statement] = STATE(187), - [sym_case_statement] = STATE(187), - [sym_while_statement] = STATE(187), - [sym_do_statement] = STATE(187), - [sym_for_statement] = STATE(187), - [sym_return_statement] = STATE(187), - [sym_break_statement] = STATE(187), - [sym_continue_statement] = STATE(187), - [sym_goto_statement] = STATE(187), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [349] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(188), + [sym_attributed_statement] = STATE(188), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_case_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54260,47 +50627,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [353] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54308,20 +50675,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(183), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54346,7 +50713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [396] = { + [354] = { [sym_identifier] = ACTIONS(1216), [aux_sym_preproc_include_token1] = ACTIONS(1216), [aux_sym_preproc_def_token1] = ACTIONS(1216), @@ -54375,6 +50742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(1216), [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), [anon_sym_static] = ACTIONS(1216), [anon_sym_auto] = ACTIONS(1216), [anon_sym_register] = ACTIONS(1216), @@ -54388,10 +50759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1216), [anon_sym__Noreturn] = ACTIONS(1216), [anon_sym_noreturn] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), [sym_primitive_type] = ACTIONS(1216), [anon_sym_enum] = ACTIONS(1216), [anon_sym_struct] = ACTIONS(1216), @@ -54432,47 +50799,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1216), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_attribute_declaration] = STATE(430), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [355] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54518,47 +50885,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(410), - [sym_attributed_statement] = STATE(410), - [sym_labeled_statement] = STATE(410), - [sym_expression_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_switch_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_do_statement] = STATE(410), - [sym_for_statement] = STATE(410), - [sym_return_statement] = STATE(410), - [sym_break_statement] = STATE(410), - [sym_continue_statement] = STATE(410), - [sym_goto_statement] = STATE(410), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [356] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54566,20 +50933,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(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54604,47 +50971,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_attribute_declaration] = STATE(306), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__expression] = STATE(1043), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1862), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [357] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54652,20 +51019,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54690,47 +51057,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(419), - [sym_attributed_statement] = STATE(419), - [sym_labeled_statement] = STATE(419), - [sym_expression_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_switch_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_do_statement] = STATE(419), - [sym_for_statement] = STATE(419), - [sym_return_statement] = STATE(419), - [sym_break_statement] = STATE(419), - [sym_continue_statement] = STATE(419), - [sym_goto_statement] = STATE(419), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [358] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(257), + [sym_attributed_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54738,20 +51105,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(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54776,47 +51143,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_attribute_declaration] = STATE(432), - [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__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [359] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(194), + [sym_attributed_statement] = STATE(194), + [sym_labeled_statement] = STATE(194), + [sym_expression_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_switch_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(194), + [sym_return_statement] = STATE(194), + [sym_break_statement] = STATE(194), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(194), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54824,20 +51363,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(587), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54862,133 +51401,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [362] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(193), + [sym_attributed_statement] = STATE(193), + [sym_labeled_statement] = STATE(193), + [sym_expression_statement] = STATE(193), + [sym_if_statement] = STATE(193), + [sym_switch_statement] = STATE(193), + [sym_case_statement] = STATE(193), + [sym_while_statement] = STATE(193), + [sym_do_statement] = STATE(193), + [sym_for_statement] = STATE(193), + [sym_return_statement] = STATE(193), + [sym_break_statement] = STATE(193), + [sym_continue_statement] = STATE(193), + [sym_goto_statement] = STATE(193), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(253), - [sym_attributed_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_case_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [363] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(191), + [sym_attributed_statement] = STATE(191), + [sym_labeled_statement] = STATE(191), + [sym_expression_statement] = STATE(191), + [sym_if_statement] = STATE(191), + [sym_switch_statement] = STATE(191), + [sym_case_statement] = STATE(191), + [sym_while_statement] = STATE(191), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(191), + [sym_return_statement] = STATE(191), + [sym_break_statement] = STATE(191), + [sym_continue_statement] = STATE(191), + [sym_goto_statement] = STATE(191), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54996,20 +51621,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(587), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55034,133 +51659,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(270), - [sym_attributed_statement] = STATE(270), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(270), - [sym_switch_statement] = STATE(270), - [sym_case_statement] = STATE(270), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(270), - [sym_return_statement] = STATE(270), - [sym_break_statement] = STATE(270), - [sym_continue_statement] = STATE(270), - [sym_goto_statement] = STATE(270), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1528), - [anon_sym_offsetof] = ACTIONS(1531), - [anon_sym__Generic] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym___asm__] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1546), - [anon_sym_u_DQUOTE] = ACTIONS(1546), - [anon_sym_U_DQUOTE] = ACTIONS(1546), - [anon_sym_u8_DQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [anon_sym_NULL] = ACTIONS(1552), - [anon_sym_nullptr] = ACTIONS(1552), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_attribute_declaration] = STATE(310), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(311), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(311), - [sym_if_statement] = STATE(311), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(311), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(311), - [sym_for_statement] = STATE(311), - [sym_return_statement] = STATE(311), - [sym_break_statement] = STATE(311), - [sym_continue_statement] = STATE(311), - [sym_goto_statement] = STATE(311), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [365] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(102), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_case_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1464), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55168,20 +51707,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(1050), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55206,219 +51745,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [366] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [367] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [368] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(385), + [sym_attributed_statement] = STATE(385), + [sym_labeled_statement] = STATE(385), + [sym_expression_statement] = STATE(385), + [sym_if_statement] = STATE(385), + [sym_switch_statement] = STATE(385), + [sym_case_statement] = STATE(385), + [sym_while_statement] = STATE(385), + [sym_do_statement] = STATE(385), + [sym_for_statement] = STATE(385), + [sym_return_statement] = STATE(385), + [sym_break_statement] = STATE(385), + [sym_continue_statement] = STATE(385), + [sym_goto_statement] = STATE(385), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55426,20 +51965,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55464,219 +52003,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [369] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(227), - [sym_attributed_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [371] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(1940), + [sym_attributed_statement] = STATE(1940), + [sym_labeled_statement] = STATE(1940), + [sym_expression_statement] = STATE(1940), + [sym_if_statement] = STATE(1940), + [sym_switch_statement] = STATE(1940), + [sym_case_statement] = STATE(1940), + [sym_while_statement] = STATE(1940), + [sym_do_statement] = STATE(1940), + [sym_for_statement] = STATE(1940), + [sym_return_statement] = STATE(1940), + [sym_break_statement] = STATE(1940), + [sym_continue_statement] = STATE(1940), + [sym_goto_statement] = STATE(1940), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55684,20 +52223,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55722,47 +52261,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(226), - [sym_attributed_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_case_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_goto_statement] = STATE(226), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [372] = { + [sym_attribute_declaration] = STATE(272), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55770,20 +52309,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55808,219 +52347,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(447), - [sym_attributed_statement] = STATE(447), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [373] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [374] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(450), - [sym_attributed_statement] = STATE(450), - [sym_labeled_statement] = STATE(450), - [sym_expression_statement] = STATE(450), - [sym_if_statement] = STATE(450), - [sym_switch_statement] = STATE(450), - [sym_case_statement] = STATE(450), - [sym_while_statement] = STATE(450), - [sym_do_statement] = STATE(450), - [sym_for_statement] = STATE(450), - [sym_return_statement] = STATE(450), - [sym_break_statement] = STATE(450), - [sym_continue_statement] = STATE(450), - [sym_goto_statement] = STATE(450), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [376] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(294), - [sym_attributed_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_case_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_goto_statement] = STATE(294), - [sym__expression] = STATE(1044), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1761), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [377] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(190), + [sym_attributed_statement] = STATE(190), + [sym_labeled_statement] = STATE(190), + [sym_expression_statement] = STATE(190), + [sym_if_statement] = STATE(190), + [sym_switch_statement] = STATE(190), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(190), + [sym_do_statement] = STATE(190), + [sym_for_statement] = STATE(190), + [sym_return_statement] = STATE(190), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(190), + [sym_goto_statement] = STATE(190), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1464), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56028,20 +52739,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(1050), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56066,219 +52777,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [416] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [378] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(224), - [sym_attributed_statement] = STATE(224), - [sym_labeled_statement] = STATE(224), - [sym_expression_statement] = STATE(224), - [sym_if_statement] = STATE(224), - [sym_switch_statement] = STATE(224), - [sym_case_statement] = STATE(224), - [sym_while_statement] = STATE(224), - [sym_do_statement] = STATE(224), - [sym_for_statement] = STATE(224), - [sym_return_statement] = STATE(224), - [sym_break_statement] = STATE(224), - [sym_continue_statement] = STATE(224), - [sym_goto_statement] = STATE(224), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [379] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(223), - [sym_attributed_statement] = STATE(223), - [sym_labeled_statement] = STATE(223), - [sym_expression_statement] = STATE(223), - [sym_if_statement] = STATE(223), - [sym_switch_statement] = STATE(223), - [sym_case_statement] = STATE(223), - [sym_while_statement] = STATE(223), - [sym_do_statement] = STATE(223), - [sym_for_statement] = STATE(223), - [sym_return_statement] = STATE(223), - [sym_break_statement] = STATE(223), - [sym_continue_statement] = STATE(223), - [sym_goto_statement] = STATE(223), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [380] = { + [sym_attribute_declaration] = STATE(273), + [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__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56286,20 +52997,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(587), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56324,133 +53035,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [381] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + }, + [382] = { + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(402), - [sym_attributed_statement] = STATE(402), - [sym_labeled_statement] = STATE(402), - [sym_expression_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_switch_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_do_statement] = STATE(402), - [sym_for_statement] = STATE(402), - [sym_return_statement] = STATE(402), - [sym_break_statement] = STATE(402), - [sym_continue_statement] = STATE(402), - [sym_goto_statement] = STATE(402), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [384] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(256), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(256), + [sym_expression_statement] = STATE(256), + [sym_if_statement] = STATE(256), + [sym_switch_statement] = STATE(256), + [sym_case_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_do_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_return_statement] = STATE(256), + [sym_break_statement] = STATE(256), + [sym_continue_statement] = STATE(256), + [sym_goto_statement] = STATE(256), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56458,20 +53341,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(587), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56496,219 +53379,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(266), - [sym_attributed_statement] = STATE(266), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(266), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(266), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(266), - [sym_do_statement] = STATE(266), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(266), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(266), - [sym_goto_statement] = STATE(266), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [385] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [386] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [387] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56716,20 +53599,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(587), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56754,47 +53637,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [388] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [390] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(397), + [sym_attributed_statement] = STATE(397), + [sym_labeled_statement] = STATE(397), + [sym_expression_statement] = STATE(397), + [sym_if_statement] = STATE(397), + [sym_switch_statement] = STATE(397), + [sym_case_statement] = STATE(397), + [sym_while_statement] = STATE(397), + [sym_do_statement] = STATE(397), + [sym_for_statement] = STATE(397), + [sym_return_statement] = STATE(397), + [sym_break_statement] = STATE(397), + [sym_continue_statement] = STATE(397), + [sym_goto_statement] = STATE(397), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56802,20 +53857,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56840,47 +53895,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(280), - [sym_attributed_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_case_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_goto_statement] = STATE(280), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [391] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(402), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_expression_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_goto_statement] = STATE(402), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56888,20 +53943,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56926,47 +53981,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(432), - [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__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [392] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(186), + [sym_attributed_statement] = STATE(186), + [sym_labeled_statement] = STATE(186), + [sym_expression_statement] = STATE(186), + [sym_if_statement] = STATE(186), + [sym_switch_statement] = STATE(186), + [sym_case_statement] = STATE(186), + [sym_while_statement] = STATE(186), + [sym_do_statement] = STATE(186), + [sym_for_statement] = STATE(186), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(186), + [sym_continue_statement] = STATE(186), + [sym_goto_statement] = STATE(186), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56974,20 +54029,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(587), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57012,47 +54067,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(283), - [sym_attributed_statement] = STATE(283), - [sym_labeled_statement] = STATE(283), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(283), - [sym_switch_statement] = STATE(283), - [sym_case_statement] = STATE(283), - [sym_while_statement] = STATE(283), - [sym_do_statement] = STATE(283), - [sym_for_statement] = STATE(283), - [sym_return_statement] = STATE(283), - [sym_break_statement] = STATE(283), - [sym_continue_statement] = STATE(283), - [sym_goto_statement] = STATE(283), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [393] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + }, + [394] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [395] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_case_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57060,20 +54287,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(587), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57098,47 +54325,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(448), - [sym_attributed_statement] = STATE(448), - [sym_labeled_statement] = STATE(448), - [sym_expression_statement] = STATE(448), - [sym_if_statement] = STATE(448), - [sym_switch_statement] = STATE(448), - [sym_case_statement] = STATE(448), - [sym_while_statement] = STATE(448), - [sym_do_statement] = STATE(448), - [sym_for_statement] = STATE(448), - [sym_return_statement] = STATE(448), - [sym_break_statement] = STATE(448), - [sym_continue_statement] = STATE(448), - [sym_goto_statement] = STATE(448), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [396] = { + [sym_attribute_declaration] = STATE(273), + [sym_compound_statement] = STATE(185), + [sym_attributed_statement] = STATE(185), + [sym_labeled_statement] = STATE(185), + [sym_expression_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(185), + [sym_case_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_do_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_return_statement] = STATE(185), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(185), + [sym_goto_statement] = STATE(185), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57146,20 +54373,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57184,47 +54411,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(446), - [sym_attributed_statement] = STATE(446), - [sym_labeled_statement] = STATE(446), - [sym_expression_statement] = STATE(446), - [sym_if_statement] = STATE(446), - [sym_switch_statement] = STATE(446), - [sym_case_statement] = STATE(446), - [sym_while_statement] = STATE(446), - [sym_do_statement] = STATE(446), - [sym_for_statement] = STATE(446), - [sym_return_statement] = STATE(446), - [sym_break_statement] = STATE(446), - [sym_continue_statement] = STATE(446), - [sym_goto_statement] = STATE(446), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [397] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [398] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57234,18 +54547,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57270,47 +54583,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_attribute_declaration] = STATE(372), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(1075), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1944), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [399] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(408), + [sym_attributed_statement] = STATE(408), + [sym_labeled_statement] = STATE(408), + [sym_expression_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_switch_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_do_statement] = STATE(408), + [sym_for_statement] = STATE(408), + [sym_return_statement] = STATE(408), + [sym_break_statement] = STATE(408), + [sym_continue_statement] = STATE(408), + [sym_goto_statement] = STATE(408), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(1657), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57318,20 +54631,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57356,47 +54669,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(1844), - [sym_attributed_statement] = STATE(1844), - [sym_labeled_statement] = STATE(1844), - [sym_expression_statement] = STATE(1844), - [sym_if_statement] = STATE(1844), - [sym_switch_statement] = STATE(1844), - [sym_case_statement] = STATE(1844), - [sym_while_statement] = STATE(1844), - [sym_do_statement] = STATE(1844), - [sym_for_statement] = STATE(1844), - [sym_return_statement] = STATE(1844), - [sym_break_statement] = STATE(1844), - [sym_continue_statement] = STATE(1844), - [sym_goto_statement] = STATE(1844), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [400] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(109), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_case_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1458), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57404,20 +54717,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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57442,47 +54755,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(270), - [sym_attributed_statement] = STATE(270), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(270), - [sym_switch_statement] = STATE(270), - [sym_case_statement] = STATE(270), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(270), - [sym_return_statement] = STATE(270), - [sym_break_statement] = STATE(270), - [sym_continue_statement] = STATE(270), - [sym_goto_statement] = STATE(270), - [sym__expression] = STATE(1083), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1813), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [401] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1456), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57490,20 +54803,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(587), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(605), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57528,47 +54841,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(444), - [sym_attributed_statement] = STATE(444), - [sym_labeled_statement] = STATE(444), - [sym_expression_statement] = STATE(444), - [sym_if_statement] = STATE(444), - [sym_switch_statement] = STATE(444), - [sym_case_statement] = STATE(444), - [sym_while_statement] = STATE(444), - [sym_do_statement] = STATE(444), - [sym_for_statement] = STATE(444), - [sym_return_statement] = STATE(444), - [sym_break_statement] = STATE(444), - [sym_continue_statement] = STATE(444), - [sym_goto_statement] = STATE(444), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [402] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [403] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(411), + [sym_attributed_statement] = STATE(411), + [sym_labeled_statement] = STATE(411), + [sym_expression_statement] = STATE(411), + [sym_if_statement] = STATE(411), + [sym_switch_statement] = STATE(411), + [sym_case_statement] = STATE(411), + [sym_while_statement] = STATE(411), + [sym_do_statement] = STATE(411), + [sym_for_statement] = STATE(411), + [sym_return_statement] = STATE(411), + [sym_break_statement] = STATE(411), + [sym_continue_statement] = STATE(411), + [sym_goto_statement] = STATE(411), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57614,305 +55013,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [435] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [404] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [405] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(417), + [sym_attributed_statement] = STATE(417), + [sym_labeled_statement] = STATE(417), + [sym_expression_statement] = STATE(417), + [sym_if_statement] = STATE(417), + [sym_switch_statement] = STATE(417), + [sym_case_statement] = STATE(417), + [sym_while_statement] = STATE(417), + [sym_do_statement] = STATE(417), + [sym_for_statement] = STATE(417), + [sym_return_statement] = STATE(417), + [sym_break_statement] = STATE(417), + [sym_continue_statement] = STATE(417), + [sym_goto_statement] = STATE(417), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(436), - [sym_attributed_statement] = STATE(436), - [sym_labeled_statement] = STATE(436), - [sym_expression_statement] = STATE(436), - [sym_if_statement] = STATE(436), - [sym_switch_statement] = STATE(436), - [sym_case_statement] = STATE(436), - [sym_while_statement] = STATE(436), - [sym_do_statement] = STATE(436), - [sym_for_statement] = STATE(436), - [sym_return_statement] = STATE(436), - [sym_break_statement] = STATE(436), - [sym_continue_statement] = STATE(436), - [sym_goto_statement] = STATE(436), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [406] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(420), + [sym_attributed_statement] = STATE(420), + [sym_labeled_statement] = STATE(420), + [sym_expression_statement] = STATE(420), + [sym_if_statement] = STATE(420), + [sym_switch_statement] = STATE(420), + [sym_case_statement] = STATE(420), + [sym_while_statement] = STATE(420), + [sym_do_statement] = STATE(420), + [sym_for_statement] = STATE(420), + [sym_return_statement] = STATE(420), + [sym_break_statement] = STATE(420), + [sym_continue_statement] = STATE(420), + [sym_goto_statement] = STATE(420), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57958,391 +55271,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [439] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [440] = { - [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_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_RBRACE] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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(1292), - [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_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = 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), + [407] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [408] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(438), - [sym_attributed_statement] = STATE(438), - [sym_labeled_statement] = STATE(438), - [sym_expression_statement] = STATE(438), - [sym_if_statement] = STATE(438), - [sym_switch_statement] = STATE(438), - [sym_case_statement] = STATE(438), - [sym_while_statement] = STATE(438), - [sym_do_statement] = STATE(438), - [sym_for_statement] = STATE(438), - [sym_return_statement] = STATE(438), - [sym_break_statement] = STATE(438), - [sym_continue_statement] = STATE(438), - [sym_goto_statement] = STATE(438), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [409] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(425), + [sym_attributed_statement] = STATE(425), + [sym_labeled_statement] = STATE(425), + [sym_expression_statement] = STATE(425), + [sym_if_statement] = STATE(425), + [sym_switch_statement] = STATE(425), + [sym_case_statement] = STATE(425), + [sym_while_statement] = STATE(425), + [sym_do_statement] = STATE(425), + [sym_for_statement] = STATE(425), + [sym_return_statement] = STATE(425), + [sym_break_statement] = STATE(425), + [sym_continue_statement] = STATE(425), + [sym_goto_statement] = STATE(425), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58388,47 +55615,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(439), - [sym_attributed_statement] = STATE(439), - [sym_labeled_statement] = STATE(439), - [sym_expression_statement] = STATE(439), - [sym_if_statement] = STATE(439), - [sym_switch_statement] = STATE(439), - [sym_case_statement] = STATE(439), - [sym_while_statement] = STATE(439), - [sym_do_statement] = STATE(439), - [sym_for_statement] = STATE(439), - [sym_return_statement] = STATE(439), - [sym_break_statement] = STATE(439), - [sym_continue_statement] = STATE(439), - [sym_goto_statement] = STATE(439), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [411] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1545), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58436,20 +55749,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(454), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58474,133 +55787,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [413] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(440), - [sym_attributed_statement] = STATE(440), - [sym_labeled_statement] = STATE(440), - [sym_expression_statement] = STATE(440), - [sym_if_statement] = STATE(440), - [sym_switch_statement] = STATE(440), - [sym_case_statement] = STATE(440), - [sym_while_statement] = STATE(440), - [sym_do_statement] = STATE(440), - [sym_for_statement] = STATE(440), - [sym_return_statement] = STATE(440), - [sym_break_statement] = STATE(440), - [sym_continue_statement] = STATE(440), - [sym_goto_statement] = STATE(440), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [414] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(284), + [sym_attributed_statement] = STATE(284), + [sym_labeled_statement] = STATE(284), + [sym_expression_statement] = STATE(284), + [sym_if_statement] = STATE(284), + [sym_switch_statement] = STATE(284), + [sym_case_statement] = STATE(284), + [sym_while_statement] = STATE(284), + [sym_do_statement] = STATE(284), + [sym_for_statement] = STATE(284), + [sym_return_statement] = STATE(284), + [sym_break_statement] = STATE(284), + [sym_continue_statement] = STATE(284), + [sym_goto_statement] = STATE(284), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58610,18 +55923,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [sym_attribute_declaration] = STATE(273), + [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__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1843), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [416] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(111), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_case_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58646,7 +56131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [446] = { + [417] = { [sym_identifier] = ACTIONS(1280), [aux_sym_preproc_include_token1] = ACTIONS(1280), [aux_sym_preproc_def_token1] = ACTIONS(1280), @@ -58675,6 +56160,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(1280), [anon_sym_LBRACE] = ACTIONS(1282), [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), [anon_sym_static] = ACTIONS(1280), [anon_sym_auto] = ACTIONS(1280), [anon_sym_register] = ACTIONS(1280), @@ -58688,10 +56177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1280), [anon_sym__Noreturn] = ACTIONS(1280), [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), [sym_primitive_type] = ACTIONS(1280), [anon_sym_enum] = ACTIONS(1280), [anon_sym_struct] = ACTIONS(1280), @@ -58731,3073 +56216,3017 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(1280), [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), - }, - [447] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_attribute_declaration] = STATE(301), - [sym_compound_statement] = STATE(441), - [sym_attributed_statement] = STATE(441), - [sym_labeled_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_switch_statement] = STATE(441), - [sym_case_statement] = STATE(441), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1765), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [aux_sym_attributed_declarator_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [450] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [452] = { - [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_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_RBRACE] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = 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), + }, + [418] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(426), + [sym_attributed_statement] = STATE(426), + [sym_labeled_statement] = STATE(426), + [sym_expression_statement] = STATE(426), + [sym_if_statement] = STATE(426), + [sym_switch_statement] = STATE(426), + [sym_case_statement] = STATE(426), + [sym_while_statement] = STATE(426), + [sym_do_statement] = STATE(426), + [sym_for_statement] = STATE(426), + [sym_return_statement] = STATE(426), + [sym_break_statement] = STATE(426), + [sym_continue_statement] = STATE(426), + [sym_goto_statement] = STATE(426), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), + [419] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [454] = { - [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_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_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = 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), + [420] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [455] = { - [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), - [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_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_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = 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), + [421] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(428), + [sym_attributed_statement] = STATE(428), + [sym_labeled_statement] = STATE(428), + [sym_expression_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_switch_statement] = STATE(428), + [sym_case_statement] = STATE(428), + [sym_while_statement] = STATE(428), + [sym_do_statement] = STATE(428), + [sym_for_statement] = STATE(428), + [sym_return_statement] = STATE(428), + [sym_break_statement] = STATE(428), + [sym_continue_statement] = STATE(428), + [sym_goto_statement] = STATE(428), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [456] = { - [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_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_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [422] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [457] = { - [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_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_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [423] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(113), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [458] = { - [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_if_token2] = 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_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_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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_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), + [424] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(430), + [sym_attributed_statement] = STATE(430), + [sym_labeled_statement] = STATE(430), + [sym_expression_statement] = STATE(430), + [sym_if_statement] = STATE(430), + [sym_switch_statement] = STATE(430), + [sym_case_statement] = STATE(430), + [sym_while_statement] = STATE(430), + [sym_do_statement] = STATE(430), + [sym_for_statement] = STATE(430), + [sym_return_statement] = STATE(430), + [sym_break_statement] = STATE(430), + [sym_continue_statement] = STATE(430), + [sym_goto_statement] = STATE(430), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [425] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [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_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_RBRACE] = 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_thread_local] = 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(1292), + [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_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = 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), }, - [460] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [427] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(114), + [sym_attributed_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [428] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), + [429] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [463] = { - [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_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_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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_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), + [430] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [sym_attribute_declaration] = STATE(315), + [sym_compound_statement] = STATE(437), + [sym_attributed_statement] = STATE(437), + [sym_labeled_statement] = STATE(437), + [sym_expression_statement] = STATE(437), + [sym_if_statement] = STATE(437), + [sym_switch_statement] = STATE(437), + [sym_case_statement] = STATE(437), + [sym_while_statement] = STATE(437), + [sym_do_statement] = STATE(437), + [sym_for_statement] = STATE(437), + [sym_return_statement] = STATE(437), + [sym_break_statement] = STATE(437), + [sym_continue_statement] = STATE(437), + [sym_goto_statement] = STATE(437), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [464] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [432] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [433] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(116), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), + [434] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(117), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_case_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [467] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [435] = { + [sym_attribute_declaration] = STATE(333), + [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__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [468] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), + [436] = { + [sym_attribute_declaration] = STATE(333), + [sym_compound_statement] = STATE(119), + [sym_attributed_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_statement] = STATE(119), + [sym_case_statement] = STATE(119), + [sym_while_statement] = STATE(119), + [sym_do_statement] = STATE(119), + [sym_for_statement] = STATE(119), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(119), + [sym_continue_statement] = STATE(119), + [sym_goto_statement] = STATE(119), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1966), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [469] = { - [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), - [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_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_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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_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), + [437] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [438] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(528), + [sym_attributed_statement] = STATE(528), + [sym_labeled_statement] = STATE(528), + [sym_expression_statement] = STATE(528), + [sym_if_statement] = STATE(528), + [sym_switch_statement] = STATE(528), + [sym_case_statement] = STATE(528), + [sym_while_statement] = STATE(528), + [sym_do_statement] = STATE(528), + [sym_for_statement] = STATE(528), + [sym_return_statement] = STATE(528), + [sym_break_statement] = STATE(528), + [sym_continue_statement] = STATE(528), + [sym_goto_statement] = STATE(528), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [439] = { + [sym_attribute_declaration] = STATE(321), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1842), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [472] = { - [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_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_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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_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), + [440] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(256), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(256), + [sym_expression_statement] = STATE(256), + [sym_if_statement] = STATE(256), + [sym_switch_statement] = STATE(256), + [sym_case_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_do_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_return_statement] = STATE(256), + [sym_break_statement] = STATE(256), + [sym_continue_statement] = STATE(256), + [sym_goto_statement] = STATE(256), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [473] = { - [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_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_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = 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), + [441] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(248), + [sym_attributed_statement] = STATE(248), + [sym_labeled_statement] = STATE(248), + [sym_expression_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_switch_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_return_statement] = STATE(248), + [sym_break_statement] = STATE(248), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(248), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [474] = { - [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_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_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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_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), + [442] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [475] = { - [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_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_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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_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), + [443] = { + [sym_attribute_declaration] = STATE(443), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1731), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1519), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym___asm__] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [476] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), + [444] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(247), + [sym_labeled_statement] = STATE(247), + [sym_expression_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_switch_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_return_statement] = STATE(247), + [sym_break_statement] = STATE(247), + [sym_continue_statement] = STATE(247), + [sym_goto_statement] = STATE(247), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [445] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(239), + [sym_attributed_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_case_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_goto_statement] = STATE(239), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [478] = { - [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_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_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = 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), + [446] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [479] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [447] = { + [sym_attribute_declaration] = STATE(272), + [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__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [480] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [448] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [449] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym_attribute_declaration] = STATE(272), + [sym_compound_statement] = STATE(257), + [sym_attributed_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(1053), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1946), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [aux_sym_attributed_declarator_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [451] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [482] = { - [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_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_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = 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), + [452] = { + [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_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_thread_local] = 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_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), }, - [483] = { + [453] = { [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), @@ -61826,6 +59255,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -61839,10 +59272,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [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_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_thread_local] = 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_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), + }, + [455] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [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_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_thread_local] = 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), @@ -61882,11 +59566,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [484] = { + [457] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [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_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_RBRACE] = 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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = 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), + }, + [459] = { [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), @@ -61910,7 +59765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -61924,10 +59782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1418), [anon_sym__Noreturn] = ACTIONS(1418), [anon_sym_noreturn] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), [sym_primitive_type] = ACTIONS(1418), [anon_sym_enum] = ACTIONS(1418), [anon_sym_struct] = ACTIONS(1418), @@ -61967,11 +59821,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [485] = { + [460] = { + [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_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_thread_local] = 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_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), + }, + [461] = { + [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_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_thread_local] = 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_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = 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), + }, + [462] = { [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), @@ -61995,7 +60020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62009,10 +60037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1422), [anon_sym__Noreturn] = ACTIONS(1422), [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), [sym_primitive_type] = ACTIONS(1422), [anon_sym_enum] = ACTIONS(1422), [anon_sym_struct] = ACTIONS(1422), @@ -62052,11 +60076,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [486] = { + [463] = { [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_if_token2] = ACTIONS(1426), [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), [sym_preproc_directive] = ACTIONS(1426), @@ -62080,7 +60105,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62094,10 +60122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1426), [anon_sym__Noreturn] = ACTIONS(1426), [anon_sym_noreturn] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), [sym_primitive_type] = ACTIONS(1426), [anon_sym_enum] = ACTIONS(1426), [anon_sym_struct] = ACTIONS(1426), @@ -62137,177 +60161,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [464] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [488] = { - [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_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_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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_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), + [465] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = 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), + }, + [466] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [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_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_thread_local] = 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_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), + }, + [469] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = 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), + }, + [470] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [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_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_thread_local] = 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_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), }, - [489] = { + [472] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [473] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), @@ -62336,6 +60955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), [anon_sym_static] = ACTIONS(1348), [anon_sym_auto] = ACTIONS(1348), [anon_sym_register] = ACTIONS(1348), @@ -62349,10 +60972,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1348), [anon_sym__Noreturn] = ACTIONS(1348), [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), [sym_primitive_type] = ACTIONS(1348), [anon_sym_enum] = ACTIONS(1348), [anon_sym_struct] = ACTIONS(1348), @@ -62392,11 +61011,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [490] = { + [474] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [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), + [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_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_thread_local] = 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_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), + }, + [476] = { [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), @@ -62420,7 +61210,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62434,10 +61227,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1430), [anon_sym__Noreturn] = ACTIONS(1430), [anon_sym_noreturn] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), [sym_primitive_type] = ACTIONS(1430), [anon_sym_enum] = ACTIONS(1430), [anon_sym_struct] = ACTIONS(1430), @@ -62477,11 +61266,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [491] = { + [477] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_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_thread_local] = 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_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [478] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), [sym_preproc_directive] = ACTIONS(1356), @@ -62505,7 +61380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1356), [anon_sym___vectorcall] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), [anon_sym_static] = ACTIONS(1356), [anon_sym_auto] = ACTIONS(1356), [anon_sym_register] = ACTIONS(1356), @@ -62519,10 +61397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1356), [anon_sym__Noreturn] = ACTIONS(1356), [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), [sym_primitive_type] = ACTIONS(1356), [anon_sym_enum] = ACTIONS(1356), [anon_sym_struct] = ACTIONS(1356), @@ -62562,430 +61436,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [479] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), + [480] = { + [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_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_thread_local] = 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_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), }, - [494] = { - [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_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_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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_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), + [481] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = 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), + }, + [482] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [495] = { - [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_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_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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_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), + [483] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [496] = { - [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_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_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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_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), + [484] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1404), + [485] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = 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), + }, + [486] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), [aux_sym_preproc_def_token1] = ACTIONS(1402), @@ -63000,6 +62046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1402), [anon_sym_STAR] = ACTIONS(1404), [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), [anon_sym_typedef] = ACTIONS(1402), [anon_sym_extern] = ACTIONS(1402), [anon_sym___attribute__] = ACTIONS(1402), @@ -63012,6 +62059,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -63025,10 +62077,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1402), [anon_sym__Noreturn] = ACTIONS(1402), [anon_sym_noreturn] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), [sym_primitive_type] = ACTIONS(1402), [anon_sym_enum] = ACTIONS(1402), [anon_sym_struct] = ACTIONS(1402), @@ -63068,180 +62116,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), + [487] = { + [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_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_RBRACE] = 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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = 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), + }, + [488] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = 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), }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [489] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1354), + [490] = { [sym_identifier] = ACTIONS(1352), [aux_sym_preproc_include_token1] = ACTIONS(1352), [aux_sym_preproc_def_token1] = ACTIONS(1352), [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), [sym_preproc_directive] = ACTIONS(1352), @@ -63252,6 +62387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1352), [anon_sym_STAR] = ACTIONS(1354), [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), [anon_sym_typedef] = ACTIONS(1352), [anon_sym_extern] = ACTIONS(1352), [anon_sym___attribute__] = ACTIONS(1352), @@ -63264,6 +62400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1352), [anon_sym___vectorcall] = ACTIONS(1352), [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), [anon_sym_static] = ACTIONS(1352), [anon_sym_auto] = ACTIONS(1352), [anon_sym_register] = ACTIONS(1352), @@ -63277,10 +62417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1352), [anon_sym__Noreturn] = ACTIONS(1352), [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), [sym_primitive_type] = ACTIONS(1352), [anon_sym_enum] = ACTIONS(1352), [anon_sym_struct] = ACTIONS(1352), @@ -63320,12 +62456,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1350), + [491] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), [sym_preproc_directive] = ACTIONS(1348), @@ -63336,6 +62472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1348), [anon_sym_STAR] = ACTIONS(1350), [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), [anon_sym_typedef] = ACTIONS(1348), [anon_sym_extern] = ACTIONS(1348), [anon_sym___attribute__] = ACTIONS(1348), @@ -63348,6 +62485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1348), [anon_sym___vectorcall] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), [anon_sym_static] = ACTIONS(1348), [anon_sym_auto] = ACTIONS(1348), [anon_sym_register] = ACTIONS(1348), @@ -63361,10 +62502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1348), [anon_sym__Noreturn] = ACTIONS(1348), [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), [sym_primitive_type] = ACTIONS(1348), [anon_sym_enum] = ACTIONS(1348), [anon_sym_struct] = ACTIONS(1348), @@ -63404,91 +62541,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [492] = { + [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), + [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_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_thread_local] = 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_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = 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), + }, + [493] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = 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), + }, + [494] = { + [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_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_thread_local] = 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_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [495] = { + [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_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_thread_local] = 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_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), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [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_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_thread_local] = 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_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [503] = { + [497] = { [ts_builtin_sym_end] = ACTIONS(1412), [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), @@ -63516,6 +62991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -63529,10 +63008,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1410), [anon_sym__Noreturn] = ACTIONS(1410), [anon_sym_noreturn] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), [sym_primitive_type] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), [anon_sym_struct] = ACTIONS(1410), @@ -63572,91 +63047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [504] = { - [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_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_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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_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), - }, - [505] = { + [498] = { [ts_builtin_sym_end] = ACTIONS(1396), [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), @@ -63684,6 +63075,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -63697,10 +63092,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1394), [anon_sym__Noreturn] = ACTIONS(1394), [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), [sym_primitive_type] = ACTIONS(1394), [anon_sym_enum] = ACTIONS(1394), [anon_sym_struct] = ACTIONS(1394), @@ -63740,340 +63131,928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [500] = { + [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_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_thread_local] = 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_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = 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), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [aux_sym_preproc_include_token1] = ACTIONS(1745), + [aux_sym_preproc_def_token1] = ACTIONS(1745), + [aux_sym_preproc_if_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), + [sym_preproc_directive] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_typedef] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym___attribute__] = ACTIONS(1745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), + [anon_sym___declspec] = ACTIONS(1745), + [anon_sym___cdecl] = ACTIONS(1745), + [anon_sym___clrcall] = ACTIONS(1745), + [anon_sym___stdcall] = ACTIONS(1745), + [anon_sym___fastcall] = ACTIONS(1745), + [anon_sym___thiscall] = ACTIONS(1745), + [anon_sym___vectorcall] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_signed] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_auto] = ACTIONS(1745), + [anon_sym_register] = ACTIONS(1745), + [anon_sym_inline] = ACTIONS(1745), + [anon_sym_thread_local] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_constexpr] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [anon_sym_restrict] = ACTIONS(1745), + [anon_sym___restrict__] = ACTIONS(1745), + [anon_sym__Atomic] = ACTIONS(1745), + [anon_sym__Noreturn] = ACTIONS(1745), + [anon_sym_noreturn] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_goto] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1745), + [anon_sym_offsetof] = ACTIONS(1745), + [anon_sym__Generic] = ACTIONS(1745), + [anon_sym_asm] = ACTIONS(1745), + [anon_sym___asm__] = ACTIONS(1745), + [sym_number_literal] = ACTIONS(1743), + [anon_sym_L_SQUOTE] = ACTIONS(1743), + [anon_sym_u_SQUOTE] = ACTIONS(1743), + [anon_sym_U_SQUOTE] = ACTIONS(1743), + [anon_sym_u8_SQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_L_DQUOTE] = ACTIONS(1743), + [anon_sym_u_DQUOTE] = ACTIONS(1743), + [anon_sym_U_DQUOTE] = ACTIONS(1743), + [anon_sym_u8_DQUOTE] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [anon_sym_NULL] = ACTIONS(1745), + [anon_sym_nullptr] = ACTIONS(1745), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = 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), + }, + [505] = { + [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_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_thread_local] = 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_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), + }, [506] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [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_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_thread_local] = 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_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), }, [507] = { - [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_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_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = 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), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [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_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_thread_local] = 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_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), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [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_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_thread_local] = 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_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, [510] = { @@ -64104,6 +64083,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -64117,10 +64100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1418), [anon_sym__Noreturn] = ACTIONS(1418), [anon_sym_noreturn] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), [sym_primitive_type] = ACTIONS(1418), [anon_sym_enum] = ACTIONS(1418), [anon_sym_struct] = ACTIONS(1418), @@ -64161,339 +64140,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1745), - [aux_sym_preproc_def_token1] = ACTIONS(1745), - [aux_sym_preproc_if_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), - [sym_preproc_directive] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym___attribute__] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), - [anon_sym___declspec] = ACTIONS(1745), - [anon_sym___cdecl] = ACTIONS(1745), - [anon_sym___clrcall] = ACTIONS(1745), - [anon_sym___stdcall] = ACTIONS(1745), - [anon_sym___fastcall] = ACTIONS(1745), - [anon_sym___thiscall] = ACTIONS(1745), - [anon_sym___vectorcall] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_auto] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_inline] = ACTIONS(1745), - [anon_sym_thread_local] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_constexpr] = ACTIONS(1745), - [anon_sym_volatile] = ACTIONS(1745), - [anon_sym_restrict] = ACTIONS(1745), - [anon_sym___restrict__] = ACTIONS(1745), - [anon_sym__Atomic] = ACTIONS(1745), - [anon_sym__Noreturn] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [anon_sym_signed] = ACTIONS(1745), - [anon_sym_unsigned] = ACTIONS(1745), - [anon_sym_long] = ACTIONS(1745), - [anon_sym_short] = ACTIONS(1745), - [sym_primitive_type] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_goto] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_sizeof] = ACTIONS(1745), - [anon_sym_offsetof] = ACTIONS(1745), - [anon_sym__Generic] = ACTIONS(1745), - [anon_sym_asm] = ACTIONS(1745), - [anon_sym___asm__] = ACTIONS(1745), - [sym_number_literal] = ACTIONS(1743), - [anon_sym_L_SQUOTE] = ACTIONS(1743), - [anon_sym_u_SQUOTE] = ACTIONS(1743), - [anon_sym_U_SQUOTE] = ACTIONS(1743), - [anon_sym_u8_SQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_L_DQUOTE] = ACTIONS(1743), - [anon_sym_u_DQUOTE] = ACTIONS(1743), - [anon_sym_U_DQUOTE] = ACTIONS(1743), - [anon_sym_u8_DQUOTE] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [anon_sym_NULL] = ACTIONS(1745), - [anon_sym_nullptr] = ACTIONS(1745), + [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_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_thread_local] = 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_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), + }, + [512] = { + [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_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_thread_local] = 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_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_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = 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), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [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_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_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = 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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), + [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_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_thread_local] = 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_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, [515] = { @@ -64524,6 +64503,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), [anon_sym_static] = ACTIONS(1364), [anon_sym_auto] = ACTIONS(1364), [anon_sym_register] = ACTIONS(1364), @@ -64537,10 +64520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1364), [anon_sym__Noreturn] = ACTIONS(1364), [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), [sym_primitive_type] = ACTIONS(1364), [anon_sym_enum] = ACTIONS(1364), [anon_sym_struct] = ACTIONS(1364), @@ -64581,39 +64560,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [516] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1984), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1818), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64622,18 +64601,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -64663,39 +64642,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [517] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1923), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1758), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64704,18 +64683,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -64745,39 +64724,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [518] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1888), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1953), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64786,18 +64765,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -64827,39 +64806,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [519] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1760), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1979), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64868,18 +64847,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -64909,39 +64888,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [520] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1742), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1884), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64950,18 +64929,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -64991,39 +64970,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [521] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1854), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1964), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65032,18 +65011,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -65073,39 +65052,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [522] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1800), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1921), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65114,18 +65093,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -65155,39 +65134,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [523] = { - [sym_type_qualifier] = STATE(1154), - [sym__type_specifier] = STATE(1188), - [sym_sized_type_specifier] = STATE(1147), - [sym_enum_specifier] = STATE(1147), - [sym_struct_specifier] = STATE(1147), - [sym_union_specifier] = STATE(1147), - [sym__expression] = STATE(1078), - [sym__expression_not_binary] = STATE(797), - [sym_comma_expression] = STATE(1980), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym_type_qualifier] = STATE(1176), + [sym__type_specifier] = STATE(1219), + [sym_sized_type_specifier] = STATE(1020), + [sym_enum_specifier] = STATE(1020), + [sym_struct_specifier] = STATE(1020), + [sym_union_specifier] = STATE(1020), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(808), + [sym_comma_expression] = STATE(1955), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_type_descriptor] = STATE(1763), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_type_descriptor] = STATE(1840), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), - [sym_macro_type_specifier] = STATE(1147), - [aux_sym_type_definition_repeat1] = STATE(1154), - [aux_sym_sized_type_specifier_repeat1] = STATE(1196), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), + [sym_macro_type_specifier] = STATE(1020), + [aux_sym_type_definition_repeat1] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65196,18 +65175,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), [anon_sym_signed] = ACTIONS(1749), [anon_sym_unsigned] = ACTIONS(1749), [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [sym_primitive_type] = ACTIONS(47), [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), @@ -65237,29 +65216,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [524] = { - [sym__expression] = STATE(777), - [sym__expression_not_binary] = STATE(797), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), + [sym__expression] = STATE(769), + [sym__expression_not_binary] = STATE(808), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(808), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(808), [sym_parenthesized_expression] = STATE(811), - [sym_initializer_list] = STATE(776), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym_initializer_list] = STATE(768), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym_identifier] = ACTIONS(1753), [anon_sym_COMMA] = ACTIONS(1172), [anon_sym_RPAREN] = ACTIONS(1172), @@ -65334,6 +65313,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), [anon_sym___declspec] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_signed] = ACTIONS(1755), + [anon_sym_unsigned] = ACTIONS(1755), + [anon_sym_long] = ACTIONS(1755), + [anon_sym_short] = ACTIONS(1755), [anon_sym_LBRACK] = ACTIONS(1755), [anon_sym_EQ] = ACTIONS(1757), [anon_sym_static] = ACTIONS(1755), @@ -65349,10 +65332,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1755), [anon_sym__Noreturn] = ACTIONS(1755), [anon_sym_noreturn] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), [sym_primitive_type] = ACTIONS(1755), [anon_sym_enum] = ACTIONS(1755), [anon_sym_COLON] = ACTIONS(1757), @@ -65410,6 +65389,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), [anon_sym___declspec] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_signed] = ACTIONS(1759), + [anon_sym_unsigned] = ACTIONS(1759), + [anon_sym_long] = ACTIONS(1759), + [anon_sym_short] = ACTIONS(1759), [anon_sym_LBRACK] = ACTIONS(1759), [anon_sym_EQ] = ACTIONS(1761), [anon_sym_static] = ACTIONS(1759), @@ -65425,10 +65408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1759), [anon_sym__Noreturn] = ACTIONS(1759), [anon_sym_noreturn] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), [sym_primitive_type] = ACTIONS(1759), [anon_sym_enum] = ACTIONS(1759), [anon_sym_COLON] = ACTIONS(1761), @@ -65470,29 +65449,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [527] = { - [sym__expression] = STATE(841), - [sym__expression_not_binary] = STATE(797), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(847), - [sym_unary_expression] = STATE(797), - [sym_binary_expression] = STATE(797), - [sym_update_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_offsetof_expression] = STATE(797), - [sym_generic_expression] = STATE(797), - [sym_subscript_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_gnu_asm_expression] = STATE(797), - [sym_field_expression] = STATE(847), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(847), - [sym_initializer_list] = STATE(776), - [sym_char_literal] = STATE(797), - [sym_concatenated_string] = STATE(797), - [sym_string_literal] = STATE(753), - [sym_null] = STATE(797), + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(808), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(846), + [sym_unary_expression] = STATE(808), + [sym_binary_expression] = STATE(808), + [sym_update_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_offsetof_expression] = STATE(808), + [sym_generic_expression] = STATE(808), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_gnu_asm_expression] = STATE(808), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(768), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(754), + [sym_null] = STATE(808), [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(1765), [anon_sym_BANG] = ACTIONS(1767), @@ -65506,7 +65485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1172), [anon_sym_PIPE] = ACTIONS(1182), [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1442), [anon_sym_EQ_EQ] = ACTIONS(1172), [anon_sym_BANG_EQ] = ACTIONS(1172), [anon_sym_GT] = ACTIONS(1182), @@ -65546,7 +65525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [528] = { - [sym_else_clause] = STATE(416), + [sym_else_clause] = STATE(413), [sym_identifier] = ACTIONS(1190), [anon_sym_LPAREN2] = ACTIONS(1192), [anon_sym_BANG] = ACTIONS(1192), @@ -65562,6 +65541,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), [anon_sym___declspec] = ACTIONS(1190), [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), [anon_sym_static] = ACTIONS(1190), [anon_sym_auto] = ACTIONS(1190), [anon_sym_register] = ACTIONS(1190), @@ -65575,10 +65558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1190), [anon_sym__Noreturn] = ACTIONS(1190), [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), [sym_primitive_type] = ACTIONS(1190), [anon_sym_enum] = ACTIONS(1190), [anon_sym_struct] = ACTIONS(1190), @@ -65632,6 +65611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1788), [anon_sym___declspec] = ACTIONS(1786), [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_signed] = ACTIONS(1786), + [anon_sym_unsigned] = ACTIONS(1786), + [anon_sym_long] = ACTIONS(1786), + [anon_sym_short] = ACTIONS(1786), [anon_sym_static] = ACTIONS(1786), [anon_sym_auto] = ACTIONS(1786), [anon_sym_register] = ACTIONS(1786), @@ -65645,10 +65628,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1786), [anon_sym__Noreturn] = ACTIONS(1786), [anon_sym_noreturn] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), [sym_primitive_type] = ACTIONS(1786), [anon_sym_enum] = ACTIONS(1786), [anon_sym_struct] = ACTIONS(1786), @@ -65712,9 +65691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1793), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1110), 1, + STATE(1150), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65734,7 +65713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(534), 2, + STATE(535), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65749,7 +65728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65764,7 +65743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65801,9 +65780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1799), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1132), 1, + STATE(1134), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65823,7 +65802,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(813), 2, + STATE(536), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65838,7 +65817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65853,7 +65832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65890,9 +65869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1803), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1101), 1, + STATE(1127), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65912,7 +65891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(813), 2, + STATE(539), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65927,7 +65906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65942,7 +65921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65979,187 +65958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1807), 1, anon_sym_RBRACK, - STATE(753), 1, - sym_string_literal, - STATE(1111), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1795), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [452] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1771), 1, - anon_sym_AMP, - ACTIONS(1775), 1, - anon_sym_sizeof, - ACTIONS(1809), 1, - anon_sym_STAR, - ACTIONS(1811), 1, - anon_sym_RBRACK, - STATE(753), 1, - sym_string_literal, - STATE(1108), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(813), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1795), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [565] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1771), 1, - anon_sym_AMP, - ACTIONS(1775), 1, - anon_sym_sizeof, - ACTIONS(1813), 1, - anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1139), 1, + STATE(1133), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66179,7 +65980,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(813), 2, + STATE(812), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66194,7 +65995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66209,7 +66010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66225,7 +66026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [678] = 24, + [452] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -66242,13 +66043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1817), 1, + ACTIONS(1809), 1, anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1811), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1114), 1, + STATE(1137), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66268,7 +66069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(537), 2, + STATE(812), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66283,7 +66084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66298,7 +66099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66314,7 +66115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [791] = 24, + [565] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -66331,13 +66132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1821), 1, + ACTIONS(1813), 1, anon_sym_STAR, - ACTIONS(1823), 1, + ACTIONS(1815), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1118), 1, + STATE(1162), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66357,7 +66158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(813), 2, + STATE(812), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66372,7 +66173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66387,7 +66188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66403,7 +66204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [904] = 24, + [678] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -66420,13 +66221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1825), 1, + ACTIONS(1817), 1, anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(1819), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1130), 1, + STATE(1142), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66446,7 +66247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(535), 2, + STATE(812), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66461,7 +66262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66476,7 +66277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66492,7 +66293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1017] = 24, + [791] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -66509,13 +66310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1829), 1, + ACTIONS(1821), 1, anon_sym_STAR, - ACTIONS(1831), 1, + ACTIONS(1823), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1093), 1, + STATE(1161), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66535,7 +66336,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(531), 2, + STATE(534), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66550,7 +66351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66565,7 +66366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66581,47 +66382,120 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1130] = 27, + [904] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(1833), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RBRACE, - ACTIONS(1837), 1, - anon_sym_LBRACK, - ACTIONS(1839), 1, - anon_sym_DOT, - STATE(753), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1825), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1010), 1, + STATE(1132), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(533), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(846), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1017] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1829), 1, + anon_sym_STAR, + ACTIONS(1831), 1, + anon_sym_RBRACK, + STATE(754), 1, + sym_string_literal, + STATE(1140), 1, + sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -66631,13 +66505,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1610), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1462), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(812), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -66650,13 +66529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + ACTIONS(1795), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66672,7 +66560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1248] = 27, + [1130] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66689,55 +66577,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1847), 1, + ACTIONS(1839), 1, aux_sym_preproc_if_token2, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1881), 3, + STATE(1927), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66745,7 +66633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66754,7 +66642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(545), 8, + STATE(554), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66763,7 +66651,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, - [1366] = 27, + [1248] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66780,55 +66668,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1851), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1853), 1, + anon_sym_RPAREN, + ACTIONS(1855), 1, + anon_sym_LPAREN2, + ACTIONS(1857), 1, + anon_sym_STAR, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(1861), 1, + anon_sym_LBRACK, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1292), 1, + sym__declaration_specifiers, + STATE(1451), 1, + sym__declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1514), 1, + sym__abstract_declarator, + STATE(1886), 1, + sym_ms_based_modifier, + STATE(1548), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [1372] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1857), 1, + ACTIONS(1863), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1876), 3, + STATE(1737), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66836,7 +66818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66845,7 +66827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(549), 8, + STATE(554), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66854,7 +66836,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, - [1484] = 30, + [1490] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66871,149 +66853,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1859), 1, - sym_identifier, - ACTIONS(1861), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1863), 1, - anon_sym_RPAREN, - ACTIONS(1865), 1, - anon_sym_LPAREN2, - ACTIONS(1867), 1, - anon_sym_STAR, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(1871), 1, - anon_sym_LBRACK, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, - sym__declaration_specifiers, - STATE(1452), 1, - sym__declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1514), 1, - sym__abstract_declarator, - STATE(1811), 1, - sym_ms_based_modifier, - STATE(1638), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [1608] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1873), 1, + ACTIONS(1865), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1973), 3, + STATE(1800), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67021,7 +66909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67030,7 +66918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(554), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67039,7 +66927,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, - [1726] = 27, + [1608] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67056,55 +66944,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1875), 1, + ACTIONS(1867), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1970), 3, + STATE(1783), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67112,7 +67000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67121,7 +67009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(542), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67130,7 +67018,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, - [1844] = 27, + [1726] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67147,55 +67035,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1877), 1, + ACTIONS(1869), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1729), 3, + STATE(1804), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67203,7 +67091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67212,7 +67100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(548), 8, + STATE(543), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67221,7 +67109,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, - [1962] = 27, + [1844] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67238,55 +67126,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1879), 1, + ACTIONS(1871), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1948), 3, + STATE(1902), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67294,7 +67182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67303,7 +67191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(544), 8, + STATE(554), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67312,7 +67200,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, - [2080] = 27, + [1962] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67329,55 +67217,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1881), 1, + ACTIONS(1873), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1747), 3, + STATE(1906), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67385,7 +67273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67394,7 +67282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(540), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67403,7 +67291,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, - [2198] = 27, + [2080] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67420,55 +67308,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1843), 1, + ACTIONS(1835), 1, aux_sym_preproc_def_token1, - ACTIONS(1845), 1, + ACTIONS(1837), 1, aux_sym_preproc_if_token1, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1855), 1, + ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1883), 1, + ACTIONS(1875), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1334), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(1849), 2, + ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1861), 3, + STATE(1922), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67476,7 +67364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67485,7 +67373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(546), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67494,6 +67382,97 @@ 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, + [2198] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(1877), 1, + anon_sym_COMMA, + ACTIONS(1879), 1, + anon_sym_RBRACE, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(1883), 1, + anon_sym_DOT, + STATE(754), 1, + sym_string_literal, + STATE(1036), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + STATE(1608), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1470), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, [2316] = 26, ACTIONS(3), 1, sym_comment, @@ -67511,15 +67490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1837), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - ACTIONS(1839), 1, + ACTIONS(1883), 1, anon_sym_DOT, ACTIONS(1885), 1, anon_sym_RBRACE, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1087), 1, + STATE(1112), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67542,10 +67521,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1696), 2, + STATE(1681), 2, sym_initializer_list, sym_initializer_pair, - STATE(1462), 3, + STATE(1470), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67567,7 +67546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67600,15 +67579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1837), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - ACTIONS(1839), 1, + ACTIONS(1883), 1, anon_sym_DOT, ACTIONS(1887), 1, anon_sym_RBRACE, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1087), 1, + STATE(1112), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67631,10 +67610,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1696), 2, + STATE(1681), 2, sym_initializer_list, sym_initializer_pair, - STATE(1462), 3, + STATE(1470), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67656,7 +67635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67689,13 +67668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1837), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - ACTIONS(1839), 1, + ACTIONS(1883), 1, anon_sym_DOT, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1087), 1, + STATE(1112), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67718,10 +67697,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1696), 2, + STATE(1681), 2, sym_initializer_list, sym_initializer_pair, - STATE(1462), 3, + STATE(1470), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67743,7 +67722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67759,65 +67738,68 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2658] = 23, + [2658] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1892), 1, - aux_sym_preproc_def_token1, - ACTIONS(1895), 1, - aux_sym_preproc_if_token1, - ACTIONS(1903), 1, - sym_preproc_directive, - ACTIONS(1909), 1, + ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1912), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1915), 1, + ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1924), 1, + ACTIONS(47), 1, sym_primitive_type, - ACTIONS(1927), 1, + ACTIONS(49), 1, anon_sym_enum, - ACTIONS(1930), 1, + ACTIONS(51), 1, anon_sym_struct, - ACTIONS(1933), 1, + ACTIONS(53), 1, anon_sym_union, - STATE(945), 1, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_else_token1, + ACTIONS(1845), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1889), 1, + aux_sym_preproc_def_token1, + ACTIONS(1891), 1, + aux_sym_preproc_if_token1, + ACTIONS(1893), 1, + aux_sym_preproc_if_token2, + ACTIONS(1897), 1, + sym_preproc_directive, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1900), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1921), 4, + STATE(1872), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1898), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1906), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67825,7 +67807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1918), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67834,7 +67816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67843,68 +67825,65 @@ 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, - [2765] = 26, + [2771] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1899), 1, + sym_identifier, + ACTIONS(1902), 1, + aux_sym_preproc_def_token1, + ACTIONS(1905), 1, + aux_sym_preproc_if_token1, + ACTIONS(1913), 1, + sym_preproc_directive, + ACTIONS(1919), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(1922), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1925), 1, anon_sym___declspec, - ACTIONS(47), 1, + ACTIONS(1934), 1, sym_primitive_type, - ACTIONS(49), 1, + ACTIONS(1937), 1, anon_sym_enum, - ACTIONS(51), 1, + ACTIONS(1940), 1, anon_sym_struct, - ACTIONS(53), 1, + ACTIONS(1943), 1, anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(1851), 1, - aux_sym_preproc_else_token1, - ACTIONS(1853), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, - aux_sym_preproc_def_token1, - ACTIONS(1938), 1, - aux_sym_preproc_if_token1, - ACTIONS(1940), 1, - aux_sym_preproc_if_token2, - ACTIONS(1944), 1, - sym_preproc_directive, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1334), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1910), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1744), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(1928), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + ACTIONS(1908), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(1916), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67912,7 +67891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(1931), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67921,7 +67900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(557), 8, + STATE(554), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67947,51 +67926,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1946), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1906), 2, + STATE(1925), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67999,7 +67978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68008,7 +67987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(561), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68034,51 +68013,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1948), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1869), 2, + STATE(1801), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68086,7 +68065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68095,7 +68074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(563), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68121,51 +68100,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1950), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(1790), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68173,7 +68152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68182,7 +68161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68208,51 +68187,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1952), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1846), 2, + STATE(1768), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68260,7 +68239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68269,7 +68248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(557), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68295,51 +68274,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1954), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1978), 2, + STATE(1746), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68347,7 +68326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68356,7 +68335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(556), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68382,51 +68361,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1956), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1864), 2, + STATE(1735), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68434,7 +68413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68443,7 +68422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(558), 8, + STATE(559), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68469,51 +68448,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1958), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1972), 2, + STATE(1948), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68521,7 +68500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68530,7 +68509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(562), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68556,51 +68535,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1960), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1943), 2, + STATE(1903), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68608,7 +68587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68617,7 +68596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(553), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68643,51 +68622,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1843), 1, aux_sym_preproc_else_token1, - ACTIONS(1853), 1, + ACTIONS(1845), 1, aux_sym_preproc_elif_token1, - ACTIONS(1936), 1, + ACTIONS(1889), 1, aux_sym_preproc_def_token1, - ACTIONS(1938), 1, + ACTIONS(1891), 1, aux_sym_preproc_if_token1, - ACTIONS(1944), 1, + ACTIONS(1897), 1, sym_preproc_directive, ACTIONS(1962), 1, aux_sym_preproc_if_token2, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1942), 2, + ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1919), 2, + STATE(1792), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68695,7 +68674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68704,7 +68683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(555), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68853,7 +68832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4055] = 10, + [4055] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -68865,6 +68844,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1979), 1, anon_sym_EQ, ACTIONS(1987), 1, + anon_sym_SEMI, + ACTIONS(1990), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -68877,6 +68858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1966), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -68890,7 +68884,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1966), 13, + ACTIONS(1964), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4137] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_SEMI, + ACTIONS(1992), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1966), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68898,12 +68937,24 @@ 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_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(1972), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, ACTIONS(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -68923,7 +68974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4135] = 10, + [4219] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -68934,7 +68985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1989), 1, + ACTIONS(1990), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -68993,7 +69044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4215] = 10, + [4299] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69004,7 +69055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1991), 1, + ACTIONS(1994), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -69063,7 +69114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4295] = 10, + [4379] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69074,7 +69125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1993), 1, + ACTIONS(1996), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -69133,7 +69184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4375] = 11, + [4459] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69144,9 +69195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1989), 1, + ACTIONS(1985), 1, anon_sym_COLON, - ACTIONS(1995), 1, + ACTIONS(1987), 1, anon_sym_SEMI, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -69204,7 +69255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4457] = 11, + [4541] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69215,10 +69266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1987), 1, + ACTIONS(1992), 1, anon_sym_COLON, - ACTIONS(1995), 1, - anon_sym_SEMI, ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -69230,19 +69279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -69256,6 +69292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + ACTIONS(1966), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -69275,7 +69325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4539] = 11, + [4621] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69286,9 +69336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1993), 1, + ACTIONS(1981), 1, anon_sym_COLON, - ACTIONS(1995), 1, + ACTIONS(1987), 1, anon_sym_SEMI, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -69346,7 +69396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4621] = 11, + [4703] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69357,10 +69407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - ACTIONS(1995), 1, + ACTIONS(1987), 1, anon_sym_SEMI, + ACTIONS(1994), 1, + anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -69372,8 +69422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 12, - anon_sym_COMMA, + ACTIONS(1966), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -69417,24 +69466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4703] = 23, + [4784] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1909), 1, + ACTIONS(1919), 1, anon_sym___attribute__, - ACTIONS(1912), 1, + ACTIONS(1922), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1915), 1, + ACTIONS(1925), 1, anon_sym___declspec, - ACTIONS(1924), 1, + ACTIONS(1934), 1, sym_primitive_type, - ACTIONS(1927), 1, + ACTIONS(1937), 1, anon_sym_enum, - ACTIONS(1930), 1, + ACTIONS(1940), 1, anon_sym_struct, - ACTIONS(1933), 1, + ACTIONS(1943), 1, anon_sym_union, ACTIONS(1998), 1, aux_sym_preproc_def_token1, @@ -69442,38 +69491,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(2007), 1, sym_preproc_directive, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1332), 1, sym__declaration_specifiers, ACTIONS(2004), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1898), 3, + ACTIONS(1908), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(1921), 4, + ACTIONS(1928), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1906), 6, + ACTIONS(1916), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69481,7 +69530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1918), 8, + ACTIONS(1931), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69490,7 +69539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(574), 8, + STATE(575), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69499,7 +69548,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, - [4808] = 11, + [4889] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69510,10 +69559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1981), 1, - anon_sym_COLON, - ACTIONS(1995), 1, - anon_sym_SEMI, ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -69525,18 +69570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -69550,6 +69583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + ACTIONS(1966), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -69569,65 +69616,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4889] = 9, + [4966] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(1974), 1, - anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1899), 1, + sym_identifier, + ACTIONS(1919), 1, + anon_sym___attribute__, + ACTIONS(1922), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, - anon_sym_EQ, - ACTIONS(1983), 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(1972), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1966), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1964), 18, + ACTIONS(1925), 1, + anon_sym___declspec, + ACTIONS(1934), 1, + sym_primitive_type, + ACTIONS(1937), 1, + anon_sym_enum, + ACTIONS(1940), 1, + anon_sym_struct, + ACTIONS(1943), 1, + anon_sym_union, + ACTIONS(2010), 1, + aux_sym_preproc_def_token1, + ACTIONS(2013), 1, + aux_sym_preproc_if_token1, + ACTIONS(2019), 1, + sym_preproc_directive, + ACTIONS(2022), 1, + anon_sym_RBRACE, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1331), 1, + sym__declaration_specifiers, + ACTIONS(2016), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1928), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1916), 6, anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__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(1931), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(577), 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, + [5069] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, - anon_sym___based, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2024), 1, + aux_sym_preproc_def_token1, + ACTIONS(2026), 1, + aux_sym_preproc_if_token1, + ACTIONS(2028), 1, + aux_sym_preproc_if_token2, + ACTIONS(2032), 1, + sym_preproc_directive, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1333), 1, + sym__declaration_specifiers, + ACTIONS(2030), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69636,8 +69767,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + STATE(580), 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, + [5172] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, sym_identifier, - [4966] = 23, + ACTIONS(1908), 1, + aux_sym_preproc_if_token2, + ACTIONS(1919), 1, + anon_sym___attribute__, + ACTIONS(1922), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1925), 1, + anon_sym___declspec, + ACTIONS(1934), 1, + sym_primitive_type, + ACTIONS(1937), 1, + anon_sym_enum, + ACTIONS(1940), 1, + anon_sym_struct, + ACTIONS(1943), 1, + anon_sym_union, + ACTIONS(2034), 1, + aux_sym_preproc_def_token1, + ACTIONS(2037), 1, + aux_sym_preproc_if_token1, + ACTIONS(2043), 1, + sym_preproc_directive, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1333), 1, + sym__declaration_specifiers, + ACTIONS(2040), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1928), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1916), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__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(1931), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(579), 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, + [5275] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -69654,44 +69873,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(2010), 1, + ACTIONS(2024), 1, aux_sym_preproc_def_token1, - ACTIONS(2012), 1, + ACTIONS(2026), 1, aux_sym_preproc_if_token1, - ACTIONS(2016), 1, + ACTIONS(2032), 1, sym_preproc_directive, - ACTIONS(2018), 1, - anon_sym_RBRACE, - STATE(945), 1, + ACTIONS(2046), 1, + aux_sym_preproc_if_token2, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, STATE(1333), 1, sym__declaration_specifiers, - ACTIONS(2014), 2, + ACTIONS(2030), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69699,7 +69918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69708,7 +69927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(578), 8, + STATE(579), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69717,61 +69936,61 @@ 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, - [5069] = 23, + [5378] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1909), 1, + ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1912), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1915), 1, + ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1924), 1, + ACTIONS(47), 1, sym_primitive_type, - ACTIONS(1927), 1, + ACTIONS(49), 1, anon_sym_enum, - ACTIONS(1930), 1, + ACTIONS(51), 1, anon_sym_struct, - ACTIONS(1933), 1, + ACTIONS(53), 1, anon_sym_union, - ACTIONS(2020), 1, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2048), 1, aux_sym_preproc_def_token1, - ACTIONS(2023), 1, + ACTIONS(2050), 1, aux_sym_preproc_if_token1, - ACTIONS(2029), 1, + ACTIONS(2054), 1, sym_preproc_directive, - ACTIONS(2032), 1, + ACTIONS(2056), 1, anon_sym_RBRACE, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1333), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(2026), 2, + ACTIONS(2052), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1921), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1906), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69779,7 +69998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1918), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69788,7 +70007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(578), 8, + STATE(577), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69797,7 +70016,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, - [5172] = 23, + [5481] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -69814,44 +70033,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(2034), 1, + ACTIONS(2048), 1, aux_sym_preproc_def_token1, - ACTIONS(2036), 1, + ACTIONS(2050), 1, aux_sym_preproc_if_token1, - ACTIONS(2038), 1, - aux_sym_preproc_if_token2, - ACTIONS(2042), 1, + ACTIONS(2054), 1, sym_preproc_directive, - STATE(945), 1, + ACTIONS(2058), 1, + anon_sym_RBRACE, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(2040), 2, + ACTIONS(2052), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69859,7 +70078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69868,7 +70087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(582), 8, + STATE(581), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69877,7 +70096,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, - [5275] = 23, + [5584] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -69894,13 +70113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(2060), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(992), 1, + STATE(1035), 1, sym__expression, - STATE(1634), 1, + STATE(1536), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -69941,7 +70160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -69957,7 +70176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5378] = 23, + [5687] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -69974,13 +70193,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2046), 1, + ACTIONS(2062), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1007), 1, + STATE(1046), 1, sym__expression, - STATE(1553), 1, + STATE(1540), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -70021,7 +70240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70037,246 +70256,6 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5481] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2034), 1, - aux_sym_preproc_def_token1, - ACTIONS(2036), 1, - aux_sym_preproc_if_token1, - ACTIONS(2042), 1, - sym_preproc_directive, - ACTIONS(2048), 1, - aux_sym_preproc_if_token2, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, - sym__declaration_specifiers, - ACTIONS(2040), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(583), 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, - [5584] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1898), 1, - aux_sym_preproc_if_token2, - ACTIONS(1909), 1, - anon_sym___attribute__, - ACTIONS(1912), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1915), 1, - anon_sym___declspec, - ACTIONS(1924), 1, - sym_primitive_type, - ACTIONS(1927), 1, - anon_sym_enum, - ACTIONS(1930), 1, - anon_sym_struct, - ACTIONS(1933), 1, - anon_sym_union, - ACTIONS(2050), 1, - aux_sym_preproc_def_token1, - ACTIONS(2053), 1, - aux_sym_preproc_if_token1, - ACTIONS(2059), 1, - sym_preproc_directive, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, - sym__declaration_specifiers, - ACTIONS(2056), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1921), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1906), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(1918), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(583), 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, - [5687] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2010), 1, - aux_sym_preproc_def_token1, - ACTIONS(2012), 1, - aux_sym_preproc_if_token1, - ACTIONS(2016), 1, - sym_preproc_directive, - ACTIONS(2062), 1, - anon_sym_RBRACE, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1333), 1, - sym__declaration_specifiers, - ACTIONS(2014), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(577), 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, [5790] = 22, ACTIONS(3), 1, sym_comment, @@ -70294,11 +70273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2064), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1016), 1, + STATE(1124), 1, sym__expression, - STATE(1989), 1, + STATE(1787), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70339,7 +70318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70372,11 +70351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2066), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1035), 1, + STATE(1115), 1, sym__expression, - STATE(1936), 1, + STATE(1991), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70417,7 +70396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70450,11 +70429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2068), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1061), 1, + STATE(1055), 1, sym__expression, - STATE(1889), 1, + STATE(1916), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70495,7 +70474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70527,12 +70506,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2070), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1058), 1, + STATE(1091), 1, sym__expression, - STATE(1891), 1, + STATE(1938), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70573,7 +70552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70605,12 +70584,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2072), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1065), 1, + STATE(1062), 1, sym__expression, - STATE(1780), 1, + STATE(1847), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70651,7 +70630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70683,12 +70662,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2074), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1071), 1, + STATE(1088), 1, sym__expression, - STATE(1817), 1, + STATE(1874), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70729,7 +70708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70761,12 +70740,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2076), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1077), 1, + STATE(1097), 1, sym__expression, - STATE(1755), 1, + STATE(1880), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70807,7 +70786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70839,12 +70818,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2078), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1066), 1, + STATE(1059), 1, sym__expression, - STATE(1782), 1, + STATE(1845), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70885,7 +70864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70917,12 +70896,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2080), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1072), 1, + STATE(1057), 1, sym__expression, - STATE(1784), 1, + STATE(1967), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70963,7 +70942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70995,12 +70974,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2082), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1062), 1, + STATE(1054), 1, sym__expression, - STATE(1887), 1, + STATE(1827), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71041,7 +71020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71074,11 +71053,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2084), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1064), 1, + STATE(1076), 1, sym__expression, - STATE(1966), 1, + STATE(1915), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71119,7 +71098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71151,12 +71130,246 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2086), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, STATE(1073), 1, sym__expression, - STATE(1786), 1, + STATE(1767), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6990] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2088), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_string_literal, + STATE(1072), 1, + sym__expression, + STATE(1764), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7090] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2090), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_string_literal, + STATE(1123), 1, + sym__expression, + STATE(1784), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7190] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2092), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_string_literal, + STATE(1056), 1, + sym__expression, + STATE(1969), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71197,7 +71410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71213,41 +71426,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6990] = 22, + [7290] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(2088), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(1012), 1, + STATE(768), 1, + sym_initializer_list, + STATE(837), 1, sym__expression, - STATE(1883), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -71257,6 +71458,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -71269,13 +71482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71291,89 +71504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7090] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(1861), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1863), 1, - anon_sym_RPAREN, - ACTIONS(1871), 1, - anon_sym_LBRACK, - ACTIONS(2090), 1, - anon_sym_LPAREN2, - ACTIONS(2092), 1, - anon_sym_STAR, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, - sym__declaration_specifiers, - STATE(1504), 1, - sym_parameter_list, - STATE(1514), 1, - sym__abstract_declarator, - STATE(1638), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [7198] = 20, + [7390] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -71382,36 +71513,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, ACTIONS(1184), 1, anon_sym_LBRACE, - ACTIONS(1188), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(776), 1, + STATE(768), 1, sym_initializer_list, - STATE(777), 1, + STATE(837), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -71428,7 +71559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71449,7 +71580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7294] = 22, + [7486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71466,11 +71597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2094), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1056), 1, + STATE(1117), 1, sym__expression, - STATE(1894), 1, + STATE(1893), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71511,7 +71642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71527,7 +71658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7394] = 22, + [7586] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71540,16 +71671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + ACTIONS(2096), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(776), 1, - sym_initializer_list, - STATE(777), 1, + STATE(1094), 1, sym__expression, + STATE(1936), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71589,7 +71720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71605,7 +71736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7494] = 22, + [7686] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71620,13 +71751,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2098), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1074), 1, + STATE(1049), 1, sym__expression, - STATE(1789), 1, + STATE(1841), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71667,7 +71798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71683,7 +71814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7594] = 22, + [7786] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71698,13 +71829,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2098), 1, + ACTIONS(2100), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1080), 1, + STATE(1077), 1, sym__expression, - STATE(1880), 1, + STATE(1941), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71745,7 +71876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71761,7 +71892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7694] = 22, + [7886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71776,13 +71907,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2100), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2102), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1030), 1, + STATE(1065), 1, sym__expression, - STATE(1810), 1, + STATE(1851), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71823,7 +71954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71839,7 +71970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7794] = 22, + [7986] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71852,16 +71983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2102), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1037), 1, + STATE(1116), 1, sym__expression, - STATE(1792), 1, - sym_comma_expression, + STATE(1675), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71901,82 +72032,10 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7894] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(753), 1, - sym_string_literal, - STATE(776), 1, - sym_initializer_list, - STATE(841), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71984,16 +72043,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [7990] = 22, + [8086] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72009,12 +72064,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2104), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1060), 1, + STATE(1090), 1, sym__expression, - STATE(1963), 1, + STATE(1939), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72055,7 +72110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72071,7 +72126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8090] = 22, + [8186] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72087,12 +72142,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2106), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1011), 1, + STATE(1074), 1, sym__expression, - STATE(1938), 1, + STATE(1771), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72133,7 +72188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72149,7 +72204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8190] = 22, + [8286] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72165,12 +72220,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2108), 1, - anon_sym_RPAREN, - STATE(753), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1033), 1, + STATE(1107), 1, sym__expression, - STATE(1805), 1, + STATE(1844), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72211,7 +72266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72227,7 +72282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8290] = 22, + [8386] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72243,12 +72298,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1753), 1, sym_identifier, ACTIONS(2110), 1, - anon_sym_SEMI, - STATE(753), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1055), 1, + STATE(1092), 1, sym__expression, - STATE(1941), 1, + STATE(1943), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72289,7 +72344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72305,7 +72360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8390] = 22, + [8486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72322,11 +72377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2112), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1038), 1, + STATE(1103), 1, sym__expression, - STATE(1779), 1, + STATE(1751), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72367,7 +72422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72383,7 +72438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8490] = 22, + [8586] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72400,11 +72455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2114), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1040), 1, + STATE(1064), 1, sym__expression, - STATE(1774), 1, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72445,7 +72500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72461,7 +72516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8590] = 22, + [8686] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72478,11 +72533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2116), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1046), 1, + STATE(1105), 1, sym__expression, - STATE(1767), 1, + STATE(1945), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72523,7 +72578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72539,7 +72594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8690] = 22, + [8786] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72556,11 +72611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2118), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1048), 1, + STATE(1089), 1, sym__expression, - STATE(1838), 1, + STATE(1952), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72601,7 +72656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72617,7 +72672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8790] = 22, + [8886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72634,11 +72689,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2120), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1053), 1, + STATE(1047), 1, sym__expression, - STATE(1814), 1, + STATE(1954), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72679,7 +72734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72695,7 +72750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8890] = 22, + [8986] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72708,16 +72763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + ACTIONS(2122), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1019), 1, + STATE(1081), 1, sym__expression, - STATE(1695), 1, - sym_initializer_list, + STATE(1774), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72757,7 +72812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72773,7 +72828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8990] = 22, + [9086] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72788,13 +72843,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2124), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1015), 1, + STATE(1110), 1, sym__expression, - STATE(1927), 1, + STATE(1862), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72835,7 +72890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72851,7 +72906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9090] = 22, + [9186] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72866,13 +72921,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2124), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1079), 1, + STATE(1048), 1, sym__expression, - STATE(1716), 1, + STATE(1782), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72913,7 +72968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72929,7 +72984,89 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9190] = 22, + [9286] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1851), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1853), 1, + anon_sym_RPAREN, + ACTIONS(1861), 1, + anon_sym_LBRACK, + ACTIONS(2128), 1, + anon_sym_LPAREN2, + ACTIONS(2130), 1, + anon_sym_STAR, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1292), 1, + sym__declaration_specifiers, + STATE(1499), 1, + sym_parameter_list, + STATE(1514), 1, + sym__abstract_declarator, + STATE(1548), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [9394] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72944,13 +73081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2126), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(2132), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1067), 1, + STATE(1120), 1, sym__expression, - STATE(1871), 1, + STATE(1778), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72991,7 +73128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73007,7 +73144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9290] = 22, + [9494] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73022,13 +73159,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2128), 1, + ACTIONS(2134), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1076), 1, + STATE(1083), 1, sym__expression, - STATE(1718), 1, + STATE(1909), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73069,7 +73206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73085,7 +73222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9390] = 22, + [9594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73102,11 +73239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1023), 1, + STATE(1060), 1, sym__expression, - STATE(1694), 1, + STATE(1647), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -73147,7 +73284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73163,7 +73300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9490] = 22, + [9694] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73178,13 +73315,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2130), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2136), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1054), 1, + STATE(1078), 1, sym__expression, - STATE(1954), 1, + STATE(1914), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73225,7 +73362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73241,7 +73378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9590] = 22, + [9794] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73256,13 +73393,167 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2132), 1, + ACTIONS(2138), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1081), 1, + STATE(1119), 1, + sym__expression, + STATE(1780), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9894] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(754), 1, + sym_string_literal, + STATE(768), 1, + sym_initializer_list, + STATE(769), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(808), 20, + 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_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, + [9990] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2140), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_string_literal, + STATE(1098), 1, sym__expression, - STATE(1853), 1, + STATE(1760), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73303,7 +73594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73319,7 +73610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9690] = 22, + [10090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73332,16 +73623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2134), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1047), 1, + STATE(1104), 1, sym__expression, - STATE(1956), 1, - sym_comma_expression, + STATE(1653), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73381,7 +73672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73397,7 +73688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9790] = 22, + [10190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73412,13 +73703,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2136), 1, + ACTIONS(2142), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1036), 1, + STATE(1108), 1, sym__expression, - STATE(1776), 1, + STATE(1732), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73459,7 +73750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73475,7 +73766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9890] = 22, + [10290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73490,13 +73781,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2138), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2144), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1013), 1, + STATE(1050), 1, sym__expression, - STATE(1974), 1, + STATE(1838), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73537,7 +73828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73553,7 +73844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9990] = 22, + [10390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73568,13 +73859,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2140), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(2146), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1031), 1, + STATE(1071), 1, sym__expression, - STATE(1773), 1, + STATE(1832), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73615,7 +73906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73631,7 +73922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10090] = 22, + [10490] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73646,13 +73937,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2142), 1, + ACTIONS(2148), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1028), 1, + STATE(1099), 1, sym__expression, - STATE(1911), 1, + STATE(1878), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73693,7 +73984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73709,7 +74000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10190] = 22, + [10590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73724,13 +74015,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2150), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1082), 1, + STATE(1084), 1, sym__expression, - STATE(1851), 1, + STATE(1776), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73771,7 +74062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73787,7 +74078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10290] = 22, + [10690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73800,16 +74091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + ACTIONS(2152), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1085), 1, + STATE(1111), 1, sym__expression, - STATE(1657), 1, - sym_initializer_list, + STATE(1934), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73849,7 +74140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73865,7 +74156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10390] = 22, + [10790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73880,13 +74171,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2154), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1088), 1, + STATE(1066), 1, sym__expression, - STATE(1849), 1, + STATE(1892), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73927,7 +74218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73943,7 +74234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10490] = 22, + [10890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73958,13 +74249,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2148), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2156), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1026), 1, + STATE(1096), 1, sym__expression, - STATE(1932), 1, + STATE(1881), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74005,7 +74296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74021,7 +74312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10590] = 22, + [10990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74036,13 +74327,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1086), 1, + STATE(1118), 1, sym__expression, - STATE(1847), 1, + STATE(1730), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74083,7 +74374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74099,7 +74390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10690] = 22, + [11090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74114,13 +74405,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2152), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(2160), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1042), 1, + STATE(1052), 1, sym__expression, - STATE(1920), 1, + STATE(1972), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74161,7 +74452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74177,7 +74468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10790] = 22, + [11190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74192,13 +74483,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2154), 1, + ACTIONS(2162), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1049), 1, + STATE(1109), 1, sym__expression, - STATE(1986), 1, + STATE(1731), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74239,7 +74530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74255,7 +74546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10890] = 22, + [11290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74268,16 +74559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2156), 1, - anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1045), 1, + STATE(768), 1, + sym_initializer_list, + STATE(769), 1, sym__expression, - STATE(1918), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74317,7 +74608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74333,7 +74624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10990] = 22, + [11390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74348,13 +74639,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2164), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1017), 1, + STATE(1082), 1, sym__expression, - STATE(1769), 1, + STATE(1775), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74395,7 +74686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74411,7 +74702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11090] = 22, + [11490] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74426,13 +74717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2160), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1070), 1, + STATE(1095), 1, sym__expression, - STATE(1843), 1, + STATE(1885), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74473,7 +74764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74489,7 +74780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11190] = 22, + [11590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74504,13 +74795,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2162), 1, + ACTIONS(2168), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1014), 1, + STATE(1080), 1, sym__expression, - STATE(1959), 1, + STATE(1773), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74551,7 +74842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74567,7 +74858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11290] = 22, + [11690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74582,13 +74873,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2164), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1057), 1, + STATE(1093), 1, sym__expression, - STATE(1840), 1, + STATE(1887), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74629,7 +74920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74645,7 +74936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11390] = 22, + [11790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74660,13 +74951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2166), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2172), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1020), 1, + STATE(1067), 1, sym__expression, - STATE(1766), 1, + STATE(1889), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74707,7 +74998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74723,29 +75014,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11490] = 22, + [11890] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(2174), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(776), 1, - sym_initializer_list, - STATE(841), 1, + STATE(1079), 1, sym__expression, + STATE(1829), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -74755,18 +75058,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11990] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2176), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_string_literal, + STATE(1075), 1, + sym__expression, + STATE(1830), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -74779,13 +75148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74801,7 +75170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11590] = 22, + [12090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74816,13 +75185,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2168), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(2178), 1, + anon_sym_SEMI, + STATE(754), 1, sym_string_literal, - STATE(1068), 1, + STATE(1061), 1, sym__expression, - STATE(1930), 1, + STATE(1835), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74863,7 +75232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74879,7 +75248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11690] = 22, + [12190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74894,13 +75263,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2170), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1089), 1, + STATE(1114), 1, sym__expression, - STATE(1921), 1, + STATE(1960), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74941,7 +75310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74957,7 +75326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11790] = 22, + [12290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74972,13 +75341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2172), 1, + ACTIONS(2182), 1, anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1021), 1, + STATE(1113), 1, sym__expression, - STATE(1971), 1, + STATE(1957), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75019,7 +75388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75035,7 +75404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11890] = 22, + [12390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75050,13 +75419,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2174), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2184), 1, + anon_sym_RPAREN, + STATE(754), 1, sym_string_literal, - STATE(1050), 1, + STATE(1070), 1, sym__expression, - STATE(1837), 1, + STATE(1714), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75097,7 +75466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75113,50 +75482,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11990] = 22, + [12490] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2186), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1027), 1, + STATE(830), 1, sym__expression, - STATE(1872), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75169,16 +75535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75186,12 +75547,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12090] = 22, + [12583] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75206,14 +75571,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2178), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(2188), 1, + anon_sym_COLON, + STATE(754), 1, sym_string_literal, - STATE(1032), 1, + STATE(1138), 1, sym__expression, - STATE(1969), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75253,7 +75616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75269,7 +75632,81 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12190] = 22, + [12680] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2190), 1, + anon_sym_RBRACK, + STATE(754), 1, + sym_string_literal, + STATE(830), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(808), 20, + 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_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, + [12773] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75284,13 +75721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2180), 1, - anon_sym_SEMI, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1029), 1, + STATE(1041), 1, sym__expression, - STATE(1834), 1, + STATE(1666), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75331,7 +75766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75347,50 +75782,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12290] = 22, + [12870] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2182), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2192), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1051), 1, + STATE(830), 1, sym__expression, - STATE(1962), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75403,16 +75835,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(808), 20, + 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_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(797), 15, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12963] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2194), 1, + anon_sym_RBRACK, + STATE(754), 1, + sym_string_literal, + STATE(830), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75420,12 +75921,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12390] = 22, + [13056] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75440,14 +75945,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2184), 1, - anon_sym_RPAREN, - STATE(753), 1, + ACTIONS(2196), 1, + anon_sym_COLON, + STATE(754), 1, sym_string_literal, - STATE(1084), 1, + STATE(1145), 1, sym__expression, - STATE(1908), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75487,7 +75990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75503,48 +76006,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12490] = 21, + [13153] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2198), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1078), 1, + STATE(830), 1, sym__expression, - STATE(1980), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75557,16 +76059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75574,53 +76071,56 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12587] = 21, + [13246] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2186), 1, - anon_sym_COLON, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2200), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1096), 1, + STATE(830), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75633,16 +76133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75650,53 +76145,56 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12684] = 21, + [13339] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2202), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(985), 1, + STATE(830), 1, sym__expression, - STATE(1640), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75709,16 +76207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75726,53 +76219,56 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12781] = 21, + [13432] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2204), 1, + anon_sym_RBRACK, + STATE(754), 1, sym_string_literal, - STATE(1025), 1, + STATE(830), 1, sym__expression, - STATE(1764), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75785,16 +76281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75802,12 +76293,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [12878] = 19, + [13525] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75816,15 +76311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(2206), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(830), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75832,13 +76327,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -75860,7 +76355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75881,7 +76376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12971] = 21, + [13618] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75896,12 +76391,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2190), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1122), 1, + STATE(1051), 1, sym__expression, + STATE(1839), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75941,7 +76436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75957,47 +76452,48 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13068] = 19, + [13715] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2192), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(1102), 1, sym__expression, + STATE(1955), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76010,11 +76506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76022,56 +76523,53 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13161] = 19, + [13812] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2194), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2208), 1, + anon_sym_COLON, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(1149), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76084,11 +76582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76096,56 +76599,53 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13254] = 19, + [13909] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2196), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2210), 1, + anon_sym_COLON, + STATE(754), 1, sym_string_literal, - STATE(843), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76158,11 +76658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76170,16 +76675,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13347] = 19, + [14006] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76188,15 +76689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - ACTIONS(2198), 1, + ACTIONS(2212), 1, anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(830), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76204,13 +76705,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -76232,7 +76733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76253,47 +76754,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13440] = 19, + [14099] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2200), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(1136), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76306,11 +76806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76318,16 +76823,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13533] = 21, + [14193] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76342,11 +76843,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2202), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1121), 1, + STATE(1160), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76387,7 +76886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76403,7 +76902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13630] = 21, + [14287] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76418,9 +76917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2204), 1, - anon_sym_COLON, - STATE(753), 1, + STATE(754), 1, sym_string_literal, STATE(1125), 1, sym__expression, @@ -76463,7 +76960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76479,47 +76976,121 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13727] = 19, + [14381] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2214), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_ms_call_modifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1345), 1, + sym__declaration_specifiers, + STATE(507), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [14477] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(1129), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76532,11 +77103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76544,56 +77120,51 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13820] = 19, + [14571] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(777), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76606,11 +77177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76618,16 +77194,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [13913] = 19, + [14665] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76636,34 +77208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - ACTIONS(2210), 1, - anon_sym_RBRACK, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(770), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -76680,7 +77250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76701,47 +77271,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14006] = 19, + [14755] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2212), 1, - anon_sym_RBRACK, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(969), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76754,11 +77323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76766,16 +77340,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [14099] = 20, + [14849] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76790,9 +77360,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(954), 1, + STATE(938), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76833,7 +77403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76849,45 +77419,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14193] = 18, + [14943] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(768), 1, + STATE(1128), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76900,11 +77471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76912,16 +77488,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [14283] = 20, + [15037] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76936,9 +77508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1129), 1, + STATE(840), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76973,13 +77545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76995,7 +77567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14377] = 20, + [15131] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77010,9 +77582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1006), 1, + STATE(1147), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77053,7 +77625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77069,7 +77641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14471] = 20, + [15225] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77084,9 +77656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1126), 1, + STATE(1166), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77121,13 +77693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77143,46 +77715,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14565] = 20, + [15319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1446), 1, + anon_sym_sizeof, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + STATE(754), 1, sym_string_literal, - STATE(1024), 1, + STATE(836), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77195,16 +77766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77212,12 +77778,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [14659] = 20, + [15409] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77226,15 +77796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1124), 1, + STATE(833), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77242,21 +77810,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77269,16 +77838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77286,12 +77850,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, + [15499] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77306,9 +77874,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1127), 1, + STATE(949), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77349,7 +77917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77365,82 +77933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14847] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2214), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_ms_call_modifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(464), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [14943] = 20, + [15593] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77455,9 +77948,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(936), 1, + STATE(774), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77498,7 +77991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77514,7 +78007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15037] = 20, + [15687] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77523,15 +78016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1102), 1, + STATE(831), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77539,21 +78030,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77566,16 +78058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77583,87 +78070,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [15131] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2216), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_ms_call_modifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1341), 1, - sym__declaration_specifiers, - STATE(487), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [15227] = 18, + [15777] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77672,32 +78088,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(769), 1, + STATE(842), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77714,7 +78130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77735,45 +78151,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15317] = 18, + [15867] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2218), 1, - anon_sym_LPAREN2, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(827), 1, + STATE(921), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77786,11 +78203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77798,54 +78220,51 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [15407] = 18, + [15961] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(837), 1, + STATE(923), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77858,11 +78277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77870,16 +78294,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [15497] = 18, + [16055] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77888,36 +78308,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(792), 1, + STATE(1141), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77930,11 +78351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(846), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77942,16 +78368,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [15587] = 18, + [16149] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77960,13 +78382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(842), 1, + STATE(841), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77974,13 +78396,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78002,7 +78424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78023,7 +78445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15677] = 20, + [16239] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78038,9 +78460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(973), 1, + STATE(926), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78081,7 +78503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78097,45 +78519,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15771] = 18, + [16333] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(839), 1, + STATE(957), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78148,83 +78571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(811), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_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, - [15861] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(753), 1, - sym_string_literal, - STATE(834), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78232,16 +78588,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [15951] = 18, + [16427] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78250,13 +78602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(845), 1, + STATE(843), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78264,13 +78616,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78292,7 +78644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78313,45 +78665,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16041] = 18, + [16517] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(788), 1, + STATE(960), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78364,11 +78717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78376,16 +78734,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [16131] = 20, + [16611] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78400,9 +78754,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1095), 1, + STATE(962), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78443,7 +78797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78459,7 +78813,82 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16225] = 18, + [16705] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_ms_call_modifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1351), 1, + sym__declaration_specifiers, + STATE(133), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [16801] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78468,13 +78897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(844), 1, + STATE(832), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78482,13 +78911,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78510,7 +78939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78531,7 +78960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16315] = 20, + [16891] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78546,9 +78975,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1120), 1, + STATE(1031), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78589,7 +79018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78605,7 +79034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16409] = 18, + [16985] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78614,13 +79043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(835), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78628,13 +79057,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78656,7 +79085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78677,7 +79106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16499] = 18, + [17075] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78686,13 +79115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(838), 1, + STATE(840), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78700,13 +79129,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78728,7 +79157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78749,7 +79178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16589] = 18, + [17165] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78758,32 +79187,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(793), 1, + STATE(827), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -78800,7 +79229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78821,7 +79250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16679] = 20, + [17255] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78830,15 +79259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1098), 1, + STATE(838), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78846,21 +79273,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78873,16 +79301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78890,12 +79313,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [16773] = 18, + [17345] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78904,32 +79331,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(774), 1, + STATE(845), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -78946,7 +79373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78967,81 +79394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16863] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, - sym_string_literal, - STATE(948), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16957] = 20, + [17435] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79050,15 +79403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1099), 1, + STATE(844), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79066,95 +79417,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17051] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, - sym_string_literal, - STATE(914), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79167,16 +79445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79184,12 +79457,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [17145] = 20, + [17525] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79198,15 +79475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1134), 1, + STATE(835), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79214,21 +79489,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79241,16 +79517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79258,12 +79529,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [17239] = 20, + [17615] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79278,9 +79553,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1123), 1, + STATE(963), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79321,7 +79596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79337,46 +79612,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17333] = 20, + [17709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1436), 1, + anon_sym_LPAREN2, + ACTIONS(1446), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(910), 1, + STATE(839), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1438), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1440), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1444), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79389,16 +79663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79406,12 +79675,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [17427] = 20, + [17799] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79426,7 +79699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, STATE(964), 1, sym__expression, @@ -79469,7 +79742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79485,7 +79758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17521] = 20, + [17893] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79494,37 +79767,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1133), 1, + STATE(793), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79537,16 +79809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79554,12 +79821,91 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [17615] = 18, + [17983] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2220), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_ms_call_modifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1342), 1, + sym__declaration_specifiers, + STATE(205), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [18079] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79568,32 +79914,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(829), 1, + STATE(777), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79610,7 +79956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79631,7 +79977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17705] = 20, + [18169] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79646,9 +79992,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1119), 1, + STATE(1155), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79683,13 +80029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79705,7 +80051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17799] = 20, + [18263] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79720,9 +80066,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(956), 1, + STATE(1034), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79763,7 +80109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79779,37 +80125,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17893] = 20, + [18357] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(753), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(961), 1, + STATE(1143), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -79819,80 +80153,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17987] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, - sym_string_literal, - STATE(963), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79905,13 +80177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79927,37 +80199,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18081] = 20, + [18451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(753), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(774), 1, + STATE(1157), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -79967,6 +80227,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79979,13 +80251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80001,7 +80273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18175] = 20, + [18545] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80016,9 +80288,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(975), 1, + STATE(1058), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80059,78 +80331,10 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18269] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1188), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym_string_literal, - STATE(790), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80138,16 +80342,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [18359] = 20, + [18639] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80162,9 +80362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1091), 1, + STATE(1158), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80199,84 +80399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18453] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(753), 1, - sym_string_literal, - STATE(786), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80284,91 +80416,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [18543] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_LBRACE, - STATE(816), 1, - sym_ms_call_modifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1339), 1, - sym__declaration_specifiers, - STATE(205), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [18639] = 20, + [18733] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80383,9 +80436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1135), 1, + STATE(1146), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80420,13 +80473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80442,7 +80495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18733] = 18, + [18827] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80451,32 +80504,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(832), 1, + STATE(766), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -80493,7 +80546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80514,7 +80567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18823] = 18, + [18917] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80523,13 +80576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(830), 1, + STATE(1130), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80537,22 +80592,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80565,11 +80619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(846), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80577,16 +80636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [18913] = 18, + [19011] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80595,36 +80650,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(798), 1, + STATE(1144), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80637,11 +80693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(846), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80649,16 +80710,86 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [19105] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, + sym_string_literal, + STATE(1164), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(811), 5, + sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, + STATE(808), 15, + 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_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19003] = 20, + [19199] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80673,9 +80804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(832), 1, + STATE(1163), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80710,13 +80841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80732,7 +80863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19097] = 20, + [19293] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80747,9 +80878,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(989), 1, + STATE(979), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80790,7 +80921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80806,7 +80937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19191] = 20, + [19387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80821,9 +80952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1136), 1, + STATE(1153), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80858,13 +80989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80880,45 +81011,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19285] = 18, + [19481] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(803), 1, + STATE(1156), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80931,11 +81063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80943,18 +81080,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [19375] = 20, + [19575] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -80965,11 +81100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(946), 1, + STATE(1151), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81010,7 +81143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81026,7 +81159,82 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19469] = 18, + [19669] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2222), 1, + anon_sym_LBRACE, + STATE(814), 1, + sym_ms_call_modifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1340), 1, + sym__declaration_specifiers, + STATE(490), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [19765] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81039,9 +81247,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(806), 1, + STATE(782), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -81077,7 +81285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81098,37 +81306,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19559] = 20, + [19855] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(753), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(1112), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -81138,6 +81334,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81150,13 +81358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81172,7 +81380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19653] = 18, + [19949] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81181,32 +81389,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1436), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1446), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(807), 1, + STATE(830), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1440), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1444), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -81223,7 +81431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81244,7 +81452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19743] = 18, + [20039] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81253,13 +81461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(831), 1, + STATE(833), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -81267,95 +81477,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(797), 20, - 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_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, - [19833] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, - sym_string_literal, - STATE(809), 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(77), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81368,13 +81504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81390,37 +81526,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19927] = 20, + [20133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(753), 1, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(2224), 1, + anon_sym_LPAREN2, + STATE(754), 1, sym_string_literal, - STATE(1131), 1, + STATE(1135), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -81430,6 +81554,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81442,13 +81578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81464,46 +81600,120 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20021] = 20, + [20227] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2226), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_ms_call_modifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1356), 1, + sym__declaration_specifiers, + STATE(466), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [20323] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(1104), 1, + STATE(796), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81516,16 +81726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81533,12 +81738,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20115] = 20, + [20413] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81547,37 +81756,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1775), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - STATE(753), 1, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(1128), 1, + STATE(799), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81590,16 +81798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81607,12 +81810,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20209] = 18, + [20503] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81621,32 +81828,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(833), 1, + STATE(809), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -81663,7 +81870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81684,7 +81891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20299] = 20, + [20593] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81693,37 +81900,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(837), 1, + STATE(810), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81736,16 +81942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81753,12 +81954,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20393] = 18, + [20683] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81767,32 +81972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(836), 1, + STATE(765), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -81809,7 +82014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81830,46 +82035,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20483] = 20, + [20773] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(932), 1, + STATE(806), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81882,16 +82086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81899,12 +82098,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20577] = 20, + [20863] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81913,37 +82116,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1137), 1, + STATE(805), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81956,16 +82158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81973,50 +82170,55 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20671] = 18, + [20953] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(753), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(754), 1, sym_string_literal, - STATE(778), 1, + STATE(782), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82029,11 +82231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82041,20 +82248,14 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [20761] = 20, + [21047] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -82065,9 +82266,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + STATE(754), 1, sym_string_literal, - STATE(1063), 1, + STATE(978), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82108,7 +82311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82124,7 +82327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20855] = 20, + [21141] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82139,9 +82342,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(787), 1, + STATE(1152), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82182,7 +82385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82198,7 +82401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20949] = 18, + [21235] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82211,9 +82414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(787), 1, + STATE(803), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -82249,7 +82452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82270,7 +82473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21039] = 18, + [21325] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82279,32 +82482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(843), 1, + STATE(774), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -82321,7 +82524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82342,46 +82545,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21129] = 20, + [21415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(754), 1, sym_string_literal, - STATE(1105), 1, + STATE(801), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82394,16 +82596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82411,87 +82608,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [21223] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2228), 1, - anon_sym_LBRACE, - STATE(815), 1, - sym_ms_call_modifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - STATE(499), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [21319] = 20, + [21505] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82506,9 +82632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(1106), 1, + STATE(1154), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -82543,13 +82669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82565,82 +82691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21413] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2230), 1, - anon_sym_LBRACE, - STATE(817), 1, - sym_ms_call_modifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1355), 1, - sym__declaration_specifiers, - STATE(139), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [21509] = 18, + [21599] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82649,36 +82700,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(809), 1, + STATE(1167), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82691,11 +82743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(846), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82703,16 +82760,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_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, - [21599] = 20, + [21693] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82727,9 +82780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(753), 1, + STATE(754), 1, sym_string_literal, - STATE(842), 1, + STATE(1165), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -82764,13 +82817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(847), 5, + STATE(846), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(797), 15, + STATE(808), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82786,7 +82839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21693] = 18, + [21787] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82795,13 +82848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(753), 1, + ACTIONS(2230), 1, + anon_sym_LPAREN2, + STATE(754), 1, sym_string_literal, - STATE(767), 1, + STATE(795), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -82837,7 +82890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(797), 20, + STATE(808), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82858,86 +82911,12 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21783] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(753), 1, - sym_string_literal, - STATE(1107), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(797), 15, - 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_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, [21877] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym_identifier, - STATE(754), 2, + STATE(755), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(91), 5, @@ -82946,7 +82925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 14, + ACTIONS(2236), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82961,7 +82940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(1966), 29, + ACTIONS(2234), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82994,9 +82973,9 @@ static const uint16_t ts_small_parse_table[] = { [21942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(755), 2, + STATE(753), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(91), 5, @@ -83005,7 +82984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2238), 14, + ACTIONS(1972), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83020,7 +82999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2236), 29, + ACTIONS(1966), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83228,7 +83207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1995), 2, + ACTIONS(1987), 2, anon_sym_RPAREN, anon_sym_LBRACK, ACTIONS(1977), 7, @@ -83292,105 +83271,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(1861), 1, + ACTIONS(1851), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1863), 1, + ACTIONS(1853), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, + STATE(1292), 1, sym__declaration_specifiers, - STATE(1638), 2, + STATE(1548), 2, sym_variadic_parameter, sym_parameter_declaration, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [22341] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(1861), 1, - anon_sym_DOT_DOT_DOT, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, - sym__declaration_specifiers, - STATE(1705), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83398,7 +83312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83407,7 +83321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [22425] = 3, + [22341] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 13, @@ -83456,10 +83370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22477] = 3, + [22393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 21, + ACTIONS(2258), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -83481,7 +83395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1755), 23, + ACTIONS(2260), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -83505,10 +83419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22529] = 3, + [22445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 21, + ACTIONS(1757), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -83530,7 +83444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1759), 23, + ACTIONS(1755), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -83554,10 +83468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22581] = 3, + [22497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 21, + ACTIONS(1761), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -83579,7 +83493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2260), 23, + ACTIONS(1759), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -83603,141 +83517,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22633] = 3, + [22549] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 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(2262), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(31), 1, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22684] = 3, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1851), 1, + anon_sym_DOT_DOT_DOT, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1292), 1, + sym__declaration_specifiers, + STATE(1661), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [22633] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2266), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2274), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2278), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22735] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_argument_list, ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2276), 3, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2270), 3, anon_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(2270), 23, + ACTIONS(2262), 19, 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, @@ -83753,55 +83642,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22798] = 20, + [22708] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_PIPE_PIPE, ACTIONS(2290), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2292), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2294), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(2296), 1, - anon_sym_AMP, - ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2298), 1, anon_sym_EQ, - ACTIONS(2308), 1, + ACTIONS(2300), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, + ACTIONS(2274), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2300), 2, + ACTIONS(2276), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2302), 2, + ACTIONS(2278), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2304), 2, + ACTIONS(2280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2284), 16, + ACTIONS(2288), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -83818,55 +83707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22883] = 16, + [22793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2294), 1, - anon_sym_CARET, - ACTIONS(2296), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2274), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2304), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 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(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2270), 19, + anon_sym_EQ, + ACTIONS(2302), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83879,10 +83751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22960] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 13, + ACTIONS(2308), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83896,7 +83772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2310), 30, + ACTIONS(2306), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83908,9 +83784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83927,10 +83803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23011] = 3, + [22895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2312), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83944,10 +83832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2314), 30, + ACTIONS(2310), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83957,8 +83844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83971,11 +83856,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [22956] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - [23062] = 3, + ACTIONS(2316), 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(2314), 23, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23017] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2320), 13, @@ -84023,7 +83957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23113] = 3, + [23068] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 13, @@ -84071,22 +84005,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23164] = 8, + [23119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2328), 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(2326), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 13, + ACTIONS(2270), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84100,7 +84082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2270), 23, + ACTIONS(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -84124,10 +84106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23225] = 3, + [23231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(2332), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84141,7 +84123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2326), 30, + ACTIONS(2330), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84172,10 +84154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23276] = 3, + [23282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(2336), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84189,7 +84171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2330), 30, + ACTIONS(2334), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84220,22 +84202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23327] = 8, + [23333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2336), 13, + ACTIONS(2340), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84249,7 +84228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2334), 23, + ACTIONS(2338), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -84273,44 +84252,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23388] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [23392] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + ACTIONS(2290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2292), 1, + anon_sym_AMP_AMP, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2296), 1, + anon_sym_CARET, + ACTIONS(2344), 1, + anon_sym_EQ, + STATE(792), 1, sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2278), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2340), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2268), 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(2338), 23, + ACTIONS(2342), 17, 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, @@ -84326,10 +84318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23449] = 3, + [23475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 13, + ACTIONS(2348), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84343,7 +84335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2342), 30, + ACTIONS(2346), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84374,10 +84366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23500] = 3, + [23526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 13, + ACTIONS(2352), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84391,7 +84383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2346), 30, + ACTIONS(2350), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84403,9 +84395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84422,10 +84414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23551] = 3, + [23577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(2356), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84439,7 +84431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2350), 30, + ACTIONS(2354), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84470,58 +84462,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23602] = 19, + [23628] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2290), 1, - anon_sym_AMP_AMP, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2294), 1, - anon_sym_CARET, - ACTIONS(2296), 1, - anon_sym_AMP, - ACTIONS(2356), 1, - anon_sym_EQ, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2360), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 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(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, + anon_sym_EQ, + ACTIONS(2358), 23, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2354), 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(2362), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84534,10 +84559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23685] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 13, + ACTIONS(2368), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84551,7 +84580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2358), 30, + ACTIONS(2366), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84582,10 +84611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23736] = 3, + [23791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 13, + ACTIONS(2372), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84599,7 +84628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2362), 30, + ACTIONS(2370), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84611,9 +84640,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84630,10 +84659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23787] = 3, + [23842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 13, + ACTIONS(2376), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84647,7 +84676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2366), 30, + ACTIONS(2374), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84678,54 +84707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23838] = 15, + [23893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2296), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2380), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 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(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2274), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2270), 19, + ACTIONS(2378), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84738,19 +84751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23913] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2282), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2372), 13, + [23944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84764,9 +84772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2370), 25, + ACTIONS(2382), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84776,6 +84785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84790,57 +84801,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [23972] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_AMP_AMP, - ACTIONS(2292), 1, + ACTIONS(2388), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2294), 1, anon_sym_CARET, - ACTIONS(2296), 1, anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2270), 18, + anon_sym_EQ, + ACTIONS(2386), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84853,10 +84847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24053] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 13, + ACTIONS(2392), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84870,7 +84868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2374), 30, + ACTIONS(2390), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84882,9 +84880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84901,41 +84899,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24104] = 11, + [24097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2396), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2380), 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(2378), 23, + ACTIONS(2394), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84945,6 +84929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84957,10 +84943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24171] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(2400), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84974,7 +84964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2382), 30, + ACTIONS(2398), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85005,58 +84995,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24222] = 17, + [24199] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2278), 1, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, anon_sym_LBRACK, + ACTIONS(2290), 1, + anon_sym_PIPE_PIPE, ACTIONS(2292), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2294), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(2296), 1, - anon_sym_AMP, - STATE(785), 1, + anon_sym_CARET, + ACTIONS(2300), 1, + anon_sym_QMARK, + ACTIONS(2404), 1, + anon_sym_EQ, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, + ACTIONS(2274), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2300), 2, + ACTIONS(2276), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2302), 2, + ACTIONS(2278), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2304), 2, + ACTIONS(2280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 19, + ACTIONS(2402), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85067,61 +85060,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24301] = 20, + [24284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2290), 1, - anon_sym_AMP_AMP, - ACTIONS(2292), 1, + ACTIONS(2408), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2294), 1, anon_sym_CARET, - ACTIONS(2296), 1, anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_QMARK, - ACTIONS(2388), 1, - anon_sym_EQ, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2386), 16, + anon_sym_EQ, + ACTIONS(2406), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, 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, @@ -85132,27 +85104,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24386] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24335] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2412), 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(2390), 30, + ACTIONS(2410), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85162,8 +85152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85176,19 +85164,29 @@ 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, - [24437] = 3, + [24402] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2270), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -85197,10 +85195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2394), 30, + ACTIONS(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85210,8 +85207,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85224,14 +85219,10 @@ 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, - [24488] = 3, + [24467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 13, + ACTIONS(2416), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85245,7 +85236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2398), 30, + ACTIONS(2414), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85276,10 +85267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24539] = 3, + [24518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 13, + ACTIONS(2420), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85293,7 +85284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2402), 30, + ACTIONS(2418), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85305,9 +85296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85324,50 +85315,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24590] = 14, + [24569] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2286), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2302), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 4, + ACTIONS(2270), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2270), 19, + ACTIONS(2262), 23, 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, @@ -85383,10 +85371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24663] = 3, + [24636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 13, + ACTIONS(2424), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85400,7 +85388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2406), 30, + ACTIONS(2422), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85431,63 +85419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24714] = 3, + [24687] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 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(2410), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - [24765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2416), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2270), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -85496,10 +85449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2414), 30, + ACTIONS(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85509,8 +85461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85523,14 +85473,10 @@ 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, - [24816] = 3, + [24750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2428), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85544,7 +85490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2418), 30, + ACTIONS(2426), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85575,49 +85521,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24867] = 13, + [24801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2270), 1, + anon_sym_EQ, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + ACTIONS(2292), 1, + anon_sym_AMP_AMP, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2296), 1, + anon_sym_CARET, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2300), 2, + ACTIONS(2274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2276), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2302), 2, + ACTIONS(2278), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2304), 2, + ACTIONS(2280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2270), 21, + ACTIONS(2262), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85633,10 +85584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24938] = 3, + [24882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 13, + ACTIONS(2432), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85650,7 +85601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2422), 30, + ACTIONS(2430), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85681,38 +85632,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24989] = 3, + [24933] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2270), 1, + anon_sym_EQ, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2294), 1, anon_sym_PIPE, + ACTIONS(2296), 1, anon_sym_CARET, - anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2276), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2278), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2426), 30, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2262), 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_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85725,51 +85694,52 @@ 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, - [25040] = 11, + [25012] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + ACTIONS(2296), 1, + anon_sym_CARET, + STATE(792), 1, sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2278), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2286), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2270), 23, + ACTIONS(2262), 19, 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, @@ -85785,29 +85755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25107] = 10, + [25089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2286), 2, + ACTIONS(2436), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -85816,9 +85772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2270), 23, + ACTIONS(2434), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85828,6 +85785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85840,10 +85799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25172] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 13, + ACTIONS(2440), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85857,7 +85820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2430), 30, + ACTIONS(2438), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85888,44 +85851,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25223] = 8, + [25191] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2278), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2436), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2270), 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(2434), 23, + ACTIONS(2262), 21, 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, @@ -85941,38 +85909,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25284] = 3, + [25262] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2274), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2278), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2270), 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(2438), 30, + ACTIONS(2262), 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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85985,10 +85968,6 @@ 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, [25335] = 5, ACTIONS(3), 1, sym_comment, @@ -86038,70 +86017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25389] = 17, + [25389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, - sym_identifier, - STATE(945), 1, - sym__type_specifier, - STATE(981), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1371), 1, - sym__declaration_specifiers, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 7, - sym__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(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25466] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(813), 2, + STATE(812), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2446), 8, @@ -86146,7 +86065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [25519] = 17, + [25442] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86163,33 +86082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1370), 1, + STATE(1359), 1, sym__declaration_specifiers, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86197,7 +86116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86206,7 +86125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25596] = 17, + [25519] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86223,33 +86142,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, + STATE(1366), 1, sym__declaration_specifiers, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86257,7 +86176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86266,7 +86185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25673] = 17, + [25596] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86283,33 +86202,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1375), 1, + STATE(1368), 1, sym__declaration_specifiers, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86317,7 +86236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86326,7 +86245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25750] = 17, + [25673] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86343,33 +86262,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - STATE(945), 1, + STATE(972), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1368), 1, + STATE(1375), 1, sym__declaration_specifiers, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86377,7 +86296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86386,22 +86305,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25827] = 9, + [25750] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, + ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(2459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2462), 1, + ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(2451), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(2453), 6, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + STATE(972), 1, + sym__type_specifier, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1378), 1, + sym__declaration_specifiers, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86416,7 +86356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2465), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86425,19 +86365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2449), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25887] = 16, + [25827] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86454,31 +86382,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - STATE(947), 1, + STATE(941), 1, sym__type_specifier, - STATE(981), 1, + STATE(1022), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(45), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86486,7 +86414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86495,12 +86423,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [25901] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 1, + anon_sym___attribute__, + ACTIONS(2459), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2462), 1, + anon_sym___declspec, + ACTIONS(2451), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(2453), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 7, + sym__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(2465), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2449), 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, [25961] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1991), 1, + ACTIONS(1985), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86542,56 +86521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 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(2468), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [26061] = 6, + [26014] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1993), 1, + ACTIONS(1990), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86633,12 +86568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26114] = 6, + [26067] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1989), 1, + ACTIONS(1981), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86680,12 +86615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26167] = 6, + [26120] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1994), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86727,12 +86662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26220] = 6, + [26173] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1981), 1, + ACTIONS(1992), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86774,12 +86709,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [26226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2470), 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(2468), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, [26273] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(1987), 1, + ACTIONS(1996), 1, anon_sym_COLON, ACTIONS(1983), 10, anon_sym_STAR_EQ, @@ -86821,45 +86800,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26326] = 11, + [26326] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, + ACTIONS(2480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2482), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2484), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2486), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2270), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2380), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2378), 18, + ACTIONS(2262), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86872,53 +86855,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26388] = 19, + [26396] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2356), 1, + ACTIONS(2344), 1, anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2480), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2488), 1, anon_sym_PIPE_PIPE, - ACTIONS(2482), 1, + ACTIONS(2490), 1, anon_sym_AMP_AMP, - ACTIONS(2484), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2486), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2488), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2490), 2, + ACTIONS(2480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 2, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2354), 12, + ACTIONS(2342), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86931,47 +86914,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26466] = 15, + [26474] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2490), 2, + ACTIONS(2480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 2, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2274), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 14, + ACTIONS(2270), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2262), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -86986,107 +86968,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26536] = 16, + [26542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2486), 1, - anon_sym_CARET, - ACTIONS(2488), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2274), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2474), 2, + ACTIONS(2316), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2494), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26608] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, anon_sym_PIPE, - ACTIONS(2486), 1, anon_sym_CARET, - ACTIONS(2488), 1, anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2478), 2, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2490), 2, + anon_sym_EQ, + ACTIONS(2314), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2476), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2270), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87099,22 +87016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26682] = 8, + [26598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 13, + ACTIONS(2340), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87128,7 +87042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2270), 18, + ACTIONS(2338), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87147,52 +87061,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26738] = 18, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [26652] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2482), 1, - anon_sym_AMP_AMP, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_CARET, - ACTIONS(2488), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2492), 2, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 2, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 13, + ACTIONS(2270), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2262), 16, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87205,56 +87116,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26814] = 20, + [26718] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2482), 1, - anon_sym_AMP_AMP, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_CARET, - ACTIONS(2488), 1, - anon_sym_AMP, - ACTIONS(2496), 1, - anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2474), 2, + ACTIONS(2360), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2490), 2, + anon_sym_EQ, + ACTIONS(2358), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2476), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2284), 11, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87265,49 +87164,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26894] = 13, + [26774] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + anon_sym_LPAREN2, + ACTIONS(1857), 1, + anon_sym_STAR, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1373), 1, + sym__declarator, + STATE(1456), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1026), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1033), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [26852] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2488), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2490), 1, + anon_sym_AMP_AMP, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2494), 1, + anon_sym_CARET, + ACTIONS(2506), 1, + anon_sym_QMARK, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2492), 2, + ACTIONS(2480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 2, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2270), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2288), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87318,37 +87283,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26960] = 9, + [26932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(2474), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2412), 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(2270), 18, + ACTIONS(2410), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87367,22 +87334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27018] = 8, + [26994] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2436), 13, + ACTIONS(2312), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87396,7 +87363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2434), 18, + ACTIONS(2310), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87415,46 +87382,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27074] = 14, + [27050] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_CARET, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2490), 2, + ACTIONS(2480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 2, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2270), 14, + ACTIONS(2262), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -87469,56 +87438,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27142] = 20, + [27122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2388), 1, - anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2482), 1, - anon_sym_AMP_AMP, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_CARET, - ACTIONS(2488), 1, - anon_sym_AMP, - ACTIONS(2496), 1, - anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2474), 2, + ACTIONS(2476), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2270), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2490), 2, + anon_sym_EQ, + ACTIONS(2262), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2476), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2386), 11, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87529,81 +87487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27222] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_LPAREN2, - ACTIONS(1867), 1, - anon_sym_STAR, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1363), 1, - sym__declarator, - STATE(1469), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1811), 1, - sym_ms_based_modifier, - ACTIONS(2500), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(982), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1003), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [27300] = 8, + [27180] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2336), 13, + ACTIONS(2270), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87617,7 +87516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2334), 18, + ACTIONS(2262), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87636,24 +87535,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27356] = 7, + [27236] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2372), 13, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2270), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87662,7 +87566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2370), 20, + ACTIONS(2262), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87681,46 +87585,56 @@ 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, - [27410] = 8, + [27296] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, + ACTIONS(2404), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2488), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2490), 1, + anon_sym_AMP_AMP, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2494), 1, + anon_sym_CARET, + ACTIONS(2506), 1, + anon_sym_QMARK, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2340), 13, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2338), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2482), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2484), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2476), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2402), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87731,39 +87645,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27466] = 11, + [27376] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2478), 2, + ACTIONS(2486), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 6, + ACTIONS(2270), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2270), 18, + ACTIONS(2262), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87782,44 +87696,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27528] = 10, + [27438] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2270), 1, + anon_sym_EQ, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(785), 1, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_AMP_AMP, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2494), 1, + anon_sym_CARET, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2482), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2484), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2274), 8, + ACTIONS(2262), 13, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27514] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2270), 1, + anon_sym_EQ, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2478), 1, + anon_sym_AMP, + ACTIONS(2492), 1, anon_sym_PIPE, + ACTIONS(2494), 1, anon_sym_CARET, - anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2474), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2482), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2484), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2270), 18, + ACTIONS(2476), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2262), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87832,10 +87811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27588] = 3, + [27588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(2508), 1, + anon_sym_EQ, + ACTIONS(2510), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87848,8 +87840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2426), 24, + ACTIONS(1966), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87860,37 +87851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27633] = 5, + [27637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_EQ, - ACTIONS(2510), 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(1972), 12, + ACTIONS(2392), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87903,7 +87871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1966), 14, + anon_sym_EQ, + ACTIONS(2390), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87914,6 +87883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, @@ -87921,7 +87900,7 @@ static const uint16_t ts_small_parse_table[] = { [27682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 13, + ACTIONS(2372), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87935,7 +87914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2310), 24, + ACTIONS(2370), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87963,7 +87942,7 @@ static const uint16_t ts_small_parse_table[] = { [27727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 13, + ACTIONS(2420), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87977,7 +87956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2346), 24, + ACTIONS(2418), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88005,9 +87984,501 @@ static const uint16_t ts_small_parse_table[] = { [27772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, + ACTIONS(2514), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2512), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1348), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2518), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2516), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2520), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2524), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2528), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2534), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2532), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2540), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1410), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2544), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1394), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1422), 35, + ACTIONS(1430), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88021,6 +88492,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88034,21 +88509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [27816] = 3, + [28344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 35, + ACTIONS(2548), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88062,6 +88533,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88075,21 +88550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [27860] = 3, + [28388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 35, + ACTIONS(2552), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88103,6 +88574,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88116,21 +88591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [27904] = 3, + [28432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 35, + ACTIONS(2556), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88144,6 +88615,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88157,21 +88632,58 @@ 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, + [28476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 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(2560), 27, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [27948] = 3, + [28520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 35, + ACTIONS(2516), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88185,6 +88697,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88198,21 +88714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [27992] = 3, + [28564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 35, + ACTIONS(2564), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88226,6 +88738,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88239,21 +88755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28036] = 3, + [28608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 35, + ACTIONS(2568), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88267,6 +88779,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88280,21 +88796,58 @@ 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, + [28652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2574), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28080] = 3, + [28696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 35, + ACTIONS(1398), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88308,6 +88861,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88321,21 +88878,58 @@ 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, + [28740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2576), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28124] = 3, + [28784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 35, + ACTIONS(2580), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88349,6 +88943,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88362,34 +88960,125 @@ 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, + [28828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1362), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1360), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28168] = 3, + [28872] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1411), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(905), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1195), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [28940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2540), 27, + ACTIONS(1348), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88403,21 +89092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28212] = 3, + [28982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 35, + ACTIONS(1430), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88425,12 +89110,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88444,21 +89131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28256] = 3, + [29024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 35, + ACTIONS(2552), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88466,12 +89149,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88485,21 +89170,56 @@ 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, + [29066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2518), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2516), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28300] = 3, + [29108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(1396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 35, + ACTIONS(1394), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88507,12 +89227,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88526,21 +89248,56 @@ 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, + [29150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2556), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28344] = 3, + [29192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 35, + ACTIONS(2512), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88548,12 +89305,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88567,21 +89326,108 @@ 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, + [29234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2564), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28388] = 3, + [29276] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1393), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(888), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1196), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [29344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 35, + ACTIONS(2516), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88589,12 +89435,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88608,21 +89456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28432] = 3, + [29386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 35, + ACTIONS(2572), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88630,12 +89474,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88649,21 +89495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28476] = 3, + [29428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 35, + ACTIONS(1410), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88671,12 +89513,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88690,21 +89534,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28520] = 3, + [29470] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1411), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1195), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [29538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 35, + ACTIONS(2548), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88712,12 +89604,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88731,34 +89625,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28564] = 3, + [29580] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(981), 1, + sym_field_declaration_list, + STATE(1014), 1, + sym_attribute_specifier, + ACTIONS(2596), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2594), 23, 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, @@ -88772,34 +89671,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28608] = 3, + [29630] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(982), 1, + sym_field_declaration_list, + STATE(1005), 1, + sym_attribute_specifier, + ACTIONS(2602), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2600), 23, 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, @@ -88813,21 +89714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28652] = 3, + [29680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 35, + ACTIONS(2532), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88835,12 +89729,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88854,21 +89750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28696] = 3, + [29722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 35, + ACTIONS(2544), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88876,12 +89768,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88895,21 +89789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28740] = 3, + [29764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 35, + ACTIONS(2568), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88917,12 +89807,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -88936,34 +89828,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28784] = 3, + [29806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_field_declaration_list, + STATE(1023), 1, + sym_attribute_specifier, + ACTIONS(2606), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2604), 23, 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, @@ -88977,21 +89874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28828] = 3, + [29856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 35, + ACTIONS(2576), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88999,12 +89889,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_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, @@ -89018,19 +89910,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28872] = 3, + [29898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 7, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_field_declaration_list, + STATE(1010), 1, + sym_attribute_specifier, + ACTIONS(2610), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89038,11 +89934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2468), 27, + ACTIONS(2608), 23, 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, @@ -89057,21 +89956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28914] = 3, + [29948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1422), 33, + ACTIONS(2580), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89083,6 +89975,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89096,21 +89992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28956] = 3, + [29990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 33, + ACTIONS(2528), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89122,6 +90014,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89135,21 +90031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28998] = 3, + [30032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 33, + ACTIONS(2524), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89161,6 +90053,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89174,21 +90070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29040] = 3, + [30074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 33, + ACTIONS(1398), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89200,6 +90092,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89213,21 +90109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29082] = 3, + [30116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(1362), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 33, + ACTIONS(1360), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89239,6 +90131,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89252,21 +90148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29124] = 3, + [30158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 33, + ACTIONS(2536), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89278,6 +90170,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89291,31 +90187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29166] = 3, + [30200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 7, + ACTIONS(2470), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2584), 27, + anon_sym_COLON, + ACTIONS(2468), 27, 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, @@ -89330,21 +90226,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29208] = 3, + [30242] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1419), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1204), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2542), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 33, + ACTIONS(2540), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89356,6 +90300,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89369,21 +90317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29250] = 3, + [30352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2522), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 33, + ACTIONS(2520), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89395,6 +90339,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89408,32 +90356,108 @@ 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, + [30394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2614), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2612), 27, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29292] = 3, + [30436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(2616), 27, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1755), 27, 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, @@ -89447,32 +90471,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29334] = 3, + [30518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(1761), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(1759), 27, 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, @@ -89486,32 +90509,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29376] = 3, + [30559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2256), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2254), 31, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89525,32 +90547,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29418] = 3, + [30600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2250), 31, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89564,32 +90585,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29460] = 3, + [30641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2558), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 33, + anon_sym_RBRACE, + ACTIONS(2556), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89603,32 +90622,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29502] = 3, + [30681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(1350), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 33, + anon_sym_RBRACE, + ACTIONS(1348), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89642,32 +90659,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29544] = 3, + [30721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 33, + ACTIONS(2512), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89681,32 +90696,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29586] = 3, + [30761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 33, + ACTIONS(2556), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89720,32 +90733,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29628] = 3, + [30801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 33, + ACTIONS(2552), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89759,32 +90770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29670] = 3, + [30841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2534), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 33, + anon_sym_RBRACE, + ACTIONS(2532), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89798,32 +90807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29712] = 3, + [30881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 33, + ACTIONS(2548), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89837,32 +90844,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29754] = 3, + [30921] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 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, + [30991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + STATE(922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2644), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2642), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89876,32 +90938,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29796] = 3, + [31035] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31103] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 33, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + STATE(735), 1, + sym_string_literal, + ACTIONS(2649), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2616), 25, 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, @@ -89915,32 +91025,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29838] = 3, + [31147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2582), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 33, + anon_sym_RBRACE, + ACTIONS(2580), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89954,32 +91062,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29880] = 3, + [31187] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 33, + anon_sym_RBRACE, + ACTIONS(2576), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89993,32 +91150,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29922] = 3, + [31295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2574), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 33, + anon_sym_RBRACE, + ACTIONS(2572), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90032,31 +91187,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29964] = 3, + [31335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2254), 31, + ACTIONS(2544), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90070,31 +91224,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30005] = 3, + [31375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2588), 27, + ACTIONS(2516), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90108,31 +91261,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30046] = 3, + [31415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2566), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1755), 27, + anon_sym_RBRACE, + ACTIONS(2564), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90146,31 +91298,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30087] = 3, + [31455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 2, + ACTIONS(2514), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2250), 31, + anon_sym_RBRACE, + ACTIONS(2512), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90184,31 +91335,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30128] = 3, + [31495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1759), 27, + ACTIONS(2516), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90222,30 +91372,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30169] = 3, + [31535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2518), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 31, + anon_sym_RBRACE, + ACTIONS(2516), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, 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, @@ -90259,30 +91409,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30209] = 3, + [31575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2618), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(729), 1, + sym_string_literal, + ACTIONS(2649), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2616), 25, 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, @@ -90296,22 +91448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30249] = 3, + [31619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 2, + ACTIONS(2518), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2552), 30, + ACTIONS(2516), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90320,6 +91468,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90333,22 +91485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30289] = 3, + [31659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(2554), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2548), 30, + ACTIONS(2552), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90357,6 +91505,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90370,78 +91522,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30329] = 14, + [31699] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2274), 2, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 12, + ACTIONS(2402), 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, - [30391] = 3, + [31773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2576), 30, + ACTIONS(2564), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90455,21 +91613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30431] = 3, + [31813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 31, + ACTIONS(2572), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90479,6 +91633,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90492,35 +91650,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30471] = 3, + [31853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2655), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2657), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(977), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90529,115 +91698,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30511] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2270), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [30569] = 3, + [31905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2526), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 31, + anon_sym_RBRACE, + ACTIONS(2524), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACK_LBRACK, - STATE(680), 1, - sym_string_literal, - ACTIONS(2604), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2588), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90651,30 +91730,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30653] = 3, + [31945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(1400), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 31, + anon_sym_RBRACE, + ACTIONS(1398), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, 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, @@ -90688,30 +91767,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30693] = 3, + [31985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2538), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 31, + anon_sym_RBRACE, + ACTIONS(2536), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, 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, @@ -90725,21 +91804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30733] = 3, + [32025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 31, + ACTIONS(2532), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90749,6 +91824,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90762,32 +91841,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30773] = 5, + [32065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2550), 2, anon_sym_LBRACK_LBRACK, - STATE(717), 1, - sym_string_literal, - ACTIONS(2604), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2588), 25, + anon_sym_RBRACE, + ACTIONS(2548), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90801,30 +91878,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30817] = 3, + [32105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 2, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1422), 30, + ACTIONS(2536), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90838,32 +91915,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30857] = 5, + [32145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2618), 1, anon_sym_LBRACK_LBRACK, - STATE(748), 1, + STATE(672), 1, sym_string_literal, - ACTIONS(2604), 5, + ACTIONS(2649), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2588), 25, + ACTIONS(2616), 25, 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, @@ -90877,22 +91954,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30901] = 3, + [32189] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 2, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2270), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 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, + [32243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2520), 30, + ACTIONS(2544), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90901,6 +92018,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90914,30 +92035,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30941] = 3, + [32283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(2542), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 31, + anon_sym_RBRACE, + ACTIONS(2540), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, 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, @@ -90951,35 +92072,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30981] = 3, + [32323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2659), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2661), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(819), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90988,26 +92120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31021] = 5, + [32375] = 5, ACTIONS(3), 1, sym_comment, - STATE(926), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2610), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2608), 7, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1011), 1, + sym_attribute_specifier, + ACTIONS(2665), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91015,11 +92135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2606), 20, + ACTIONS(2663), 23, 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, @@ -91036,58 +92159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31065] = 3, + [32419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2522), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 31, + anon_sym_RBRACE, + ACTIONS(2520), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2574), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91101,67 +92191,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31145] = 3, + [32459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 2, + ACTIONS(2542), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2572), 30, + ACTIONS(2540), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91172,33 +92225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31225] = 3, + [32499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1007), 1, + sym_attribute_specifier, + ACTIONS(2669), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2516), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2667), 23, 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, @@ -91212,75 +92270,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [31265] = 19, + [32543] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2354), 7, + ACTIONS(2262), 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, - [31337] = 3, + [32609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 2, + ACTIONS(1362), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2532), 30, + ACTIONS(1360), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91289,6 +92337,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91302,50 +92354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31377] = 9, + [32649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, + ACTIONS(2618), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2625), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2627), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(41), 6, + STATE(697), 1, + sym_string_literal, + ACTIONS(2649), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2616), 25, 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_thread_local, - STATE(818), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91354,21 +92393,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31429] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32693] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 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, - ACTIONS(1398), 30, + anon_sym_COLON, + anon_sym_QMARK, + [32757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2576), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91382,75 +92479,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31469] = 20, + [32797] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, + STATE(792), 1, + sym_argument_list, + ACTIONS(2270), 2, anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 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, + [32859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, + ACTIONS(2270), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2284), 6, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [32917] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2270), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 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, - [31543] = 3, + anon_sym_QMARK, + [32973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2522), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 31, + ACTIONS(2520), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91460,6 +92638,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91473,30 +92655,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31583] = 3, + [33013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1402), 30, + ACTIONS(2524), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91510,21 +92692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31623] = 3, + [33053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 31, + ACTIONS(2528), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91534,6 +92712,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91547,21 +92729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31663] = 3, + [33093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 31, + ACTIONS(2580), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91571,6 +92749,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91584,30 +92766,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31703] = 3, + [33133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2288), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [33207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2570), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 31, + anon_sym_RBRACE, + ACTIONS(2568), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, 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, @@ -91621,16 +92857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31743] = 3, + [33247] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2530), 2, @@ -91645,6 +92877,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91658,35 +92894,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31783] = 3, + [33287] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2512), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2671), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2673), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91695,30 +92942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31823] = 3, + [33339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2618), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2524), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(711), 1, + sym_string_literal, + ACTIONS(2649), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2616), 25, 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, @@ -91732,50 +92976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [31863] = 9, + [33383] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2631), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2633), 5, + STATE(996), 1, + sym_attribute_specifier, + ACTIONS(2677), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(41), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2675), 23, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91784,53 +93018,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31915] = 12, + sym_primitive_type, + sym_identifier, + [33427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2380), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(1400), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1398), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [31973] = 9, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1362), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1360), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33507] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -91839,24 +93103,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2635), 3, + ACTIONS(2679), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2637), 5, + ACTIONS(2681), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(41), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(934), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91864,7 +93128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91873,35 +93137,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32025] = 11, + [33559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2274), 4, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2412), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2270), 16, + ACTIONS(2410), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -91911,20 +93178,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [33617] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2342), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [32081] = 3, + [33689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 2, + ACTIONS(1432), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2564), 30, + ACTIONS(1430), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91933,6 +93251,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91946,30 +93268,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32121] = 3, + [33729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1006), 1, + sym_attribute_specifier, + ACTIONS(2685), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2544), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2683), 23, 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, @@ -91983,32 +93310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32161] = 5, + [33773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1003), 1, + sym_attribute_specifier, + ACTIONS(2689), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(746), 1, - sym_string_literal, - ACTIONS(2604), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2588), 25, + anon_sym_COLON, + ACTIONS(2687), 23, 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, @@ -92022,30 +93349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32205] = 3, + [33817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2536), 30, + ACTIONS(1430), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92059,32 +93383,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32245] = 5, + [33857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(1350), 1, anon_sym_LBRACK_LBRACK, - STATE(677), 1, - sym_string_literal, - ACTIONS(2604), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2588), 25, + ACTIONS(1348), 31, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92098,80 +93420,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32289] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2274), 1, - anon_sym_PIPE, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2270), 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, - [32355] = 3, + [33897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2536), 30, + ACTIONS(2568), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92185,81 +93457,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32395] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2274), 1, - anon_sym_PIPE, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2270), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32463] = 3, + [33937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(1412), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1372), 30, + ACTIONS(1410), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92273,22 +93494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32503] = 3, + [33977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 2, + ACTIONS(1396), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2568), 30, + ACTIONS(1394), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92297,6 +93514,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92310,30 +93531,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32543] = 3, + [34017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1016), 1, + sym_attribute_specifier, + ACTIONS(2693), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2556), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2691), 23, 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, @@ -92347,22 +93573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32583] = 3, + [34061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 2, + ACTIONS(1412), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1360), 30, + ACTIONS(1410), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92371,6 +93590,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92384,81 +93607,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32623] = 17, + [34101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2270), 9, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1019), 1, + sym_attribute_specifier, + ACTIONS(2697), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1406), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2695), 23, 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, @@ -92472,122 +93649,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32731] = 18, + [34145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2270), 8, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1001), 1, + sym_attribute_specifier, + ACTIONS(2701), 7, 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, - [32801] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2274), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2270), 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_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - [32865] = 3, + ACTIONS(2699), 23, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 31, + ACTIONS(1394), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92597,6 +93705,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92610,50 +93722,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32905] = 9, + [34229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(2705), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2703), 24, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 3, 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, - ACTIONS(2641), 5, + [34268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(41), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2707), 24, 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_thread_local, - STATE(818), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92662,21 +93797,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32957] = 3, + sym_primitive_type, + sym_identifier, + [34307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1234), 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, + [34346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2713), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2711), 24, 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, @@ -92690,30 +93869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32997] = 3, + [34385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2717), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2715), 24, 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, @@ -92727,30 +93905,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33037] = 3, + [34424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(2721), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2719), 24, 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, @@ -92764,30 +93941,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33077] = 3, + [34463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 2, + ACTIONS(2725), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2580), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2723), 24, 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, @@ -92801,30 +93977,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33117] = 3, + [34502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2729), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2727), 24, 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, @@ -92838,30 +94013,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33157] = 3, + [34541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2733), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2731), 24, 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, @@ -92875,84 +94049,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33197] = 20, + [34580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2386), 6, + ACTIONS(2737), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [33271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1422), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2735), 24, 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, @@ -92966,74 +94085,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33311] = 10, + [34619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2274), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2270), 16, + ACTIONS(2741), 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, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [33365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2560), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2739), 24, 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, @@ -93047,91 +94121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1220), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1222), 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, - [33444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1220), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, - ACTIONS(1222), 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, - [33483] = 3, + [34658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1344), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -93144,7 +94139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1338), 19, + ACTIONS(1346), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93164,68 +94159,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [33522] = 3, + [34697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1338), 19, + ACTIONS(2745), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [33561] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, - sym_identifier, - ACTIONS(2652), 1, - sym_primitive_type, - STATE(926), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2650), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2743), 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2646), 6, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2648), 18, + anon_sym_COLON, + ACTIONS(2747), 24, 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, @@ -93240,45 +94229,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33608] = 15, + sym_primitive_type, + sym_identifier, + [34775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(2753), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1867), 1, anon_sym_STAR, - ACTIONS(1869), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2751), 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2506), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(1381), 1, - sym__declarator, - STATE(1470), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1811), 1, - sym_ms_based_modifier, - ACTIONS(2654), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93287,39 +94265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33670] = 10, + sym_primitive_type, + sym_identifier, + [34814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2656), 1, - anon_sym_SEMI, - ACTIONS(2631), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2633), 2, + ACTIONS(2755), 1, anon_sym_LPAREN2, + ACTIONS(1977), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1964), 24, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93328,39 +94302,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33721] = 10, + sym_primitive_type, + sym_identifier, + [34855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2658), 1, - anon_sym_SEMI, - ACTIONS(2631), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2633), 2, + ACTIONS(2760), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2758), 24, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93369,95 +94338,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33772] = 21, + sym_primitive_type, + sym_identifier, + [34894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2764), 7, anon_sym_COMMA, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2662), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [33845] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1408), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(996), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1227), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2762), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93466,39 +94374,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33904] = 10, + sym_primitive_type, + sym_identifier, + [34933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2670), 1, - anon_sym_SEMI, - ACTIONS(2631), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2633), 2, + ACTIONS(2768), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2766), 24, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93507,43 +94410,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33955] = 14, + sym_primitive_type, + sym_identifier, + [34972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2772), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2674), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1377), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1201), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2770), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93552,81 +94446,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34014] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2676), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [34085] = 8, + sym_primitive_type, + sym_identifier, + [35011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym___attribute__, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(2687), 1, - anon_sym_COLON, - STATE(1140), 1, - sym_enumerator_list, - STATE(1174), 1, - sym_attribute_specifier, - ACTIONS(2680), 6, + ACTIONS(2776), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2678), 18, + anon_sym_COLON, + ACTIONS(2774), 24, 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, @@ -93641,40 +94482,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [34132] = 10, + [35050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2689), 1, - anon_sym_SEMI, - ACTIONS(2631), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2633), 2, + ACTIONS(2780), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2778), 24, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93683,71 +94518,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34183] = 22, + sym_primitive_type, + sym_identifier, + [35089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(1232), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1234), 19, anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2691), 1, - anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(785), 1, - sym_argument_list, - STATE(1622), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2280), 2, + anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [34258] = 7, + 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, + [35128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2699), 1, - anon_sym_LBRACE, - STATE(1117), 1, - sym_field_declaration_list, - STATE(1153), 1, - sym_attribute_specifier, - ACTIONS(2697), 7, + ACTIONS(2784), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93755,10 +94567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2695), 18, + ACTIONS(2782), 24, 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, @@ -93773,44 +94590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [34303] = 14, + [35167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2788), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2705), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1360), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1004), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1219), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2786), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93819,43 +94626,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34362] = 14, + sym_primitive_type, + sym_identifier, + [35206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2792), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2705), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1360), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1219), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2790), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93864,43 +94662,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34421] = 14, + sym_primitive_type, + sym_identifier, + [35245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2796), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1395), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1223), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2794), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93909,43 +94698,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34480] = 14, + sym_primitive_type, + sym_identifier, + [35284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2800), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1395), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1008), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1223), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2798), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93954,27 +94734,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34539] = 7, + sym_primitive_type, + sym_identifier, + [35323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2699), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_field_declaration_list, - STATE(1141), 1, - sym_attribute_specifier, - ACTIONS(2709), 7, + ACTIONS(1344), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1346), 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, + [35362] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2811), 1, + sym_primitive_type, + STATE(922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2805), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2707), 18, + ACTIONS(2807), 18, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -93991,40 +94812,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [34584] = 10, + [35409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 1, - anon_sym_SEMI, - ACTIONS(2631), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2633), 2, + ACTIONS(2815), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2813), 24, 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_thread_local, - STATE(966), 7, - sym__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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94033,18 +94846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34635] = 7, + sym_primitive_type, + sym_identifier, + [35448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2699), 1, - anon_sym_LBRACE, - STATE(1094), 1, - sym_field_declaration_list, - STATE(1169), 1, - sym_attribute_specifier, - ACTIONS(2715), 7, + ACTIONS(2819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94052,10 +94859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2713), 18, + ACTIONS(2817), 24, 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, @@ -94070,44 +94882,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [34680] = 14, + [35487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2823), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2705), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1372), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1218), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2821), 24, + 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_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94116,43 +94918,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34739] = 14, + sym_primitive_type, + sym_identifier, + [35526] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2672), 1, + ACTIONS(1855), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(1857), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1363), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1376), 1, sym__declarator, - STATE(1811), 1, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1886), 1, sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1003), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1204), 2, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94161,43 +94967,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34798] = 14, + [35588] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2827), 1, + anon_sym_SEMI, + ACTIONS(2671), 2, anon_sym___based, - ACTIONS(2498), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2673), 2, anon_sym_LPAREN2, - ACTIONS(2674), 1, anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1381), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1195), 2, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94206,43 +95008,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34857] = 14, + [35639] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2701), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1327), 1, + STATE(1221), 1, sym_ms_unaligned_ptr_modifier, - STATE(1361), 1, + STATE(1372), 1, sym__field_declarator, - STATE(1835), 1, + STATE(1833), 1, sym_ms_based_modifier, - ACTIONS(2504), 2, + ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1220), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1251), 2, + STATE(1042), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, + STATE(1237), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1445), 5, + STATE(1425), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94251,194 +95053,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34916] = 14, + [35698] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1327), 1, + STATE(1221), 1, sym_ms_unaligned_ptr_modifier, - STATE(1381), 1, - sym__declarator, - STATE(1811), 1, + STATE(1372), 1, + sym__field_declarator, + STATE(1833), 1, sym_ms_based_modifier, - ACTIONS(2504), 2, + ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(988), 2, + STATE(1212), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1195), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2502), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34975] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2717), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, - anon_sym_RPAREN, - STATE(785), 1, - sym_argument_list, - STATE(1573), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35050] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2691), 1, - anon_sym_COMMA, - ACTIONS(2721), 1, - anon_sym_RPAREN, - STATE(785), 1, - sym_argument_list, - STATE(1548), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35125] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, - anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1415), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - ACTIONS(2504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1222), 2, + STATE(1237), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2502), 3, + ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94447,4959 +95098,5042 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35184] = 7, + [35757] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(2699), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_field_declaration_list, - STATE(1164), 1, - sym_attribute_specifier, - ACTIONS(2725), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2723), 18, - anon_sym_extern, + ACTIONS(35), 1, anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2835), 1, + anon_sym_SEMI, + ACTIONS(2671), 2, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, sym_identifier, - [35229] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2727), 1, - anon_sym_COMMA, - ACTIONS(2729), 1, - anon_sym_RBRACE, - STATE(785), 1, - sym_argument_list, - STATE(1550), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35304] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2731), 1, - anon_sym_SEMI, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35376] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2733), 1, - anon_sym_RPAREN, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35448] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, + ACTIONS(2673), 2, anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2735), 1, - anon_sym_SEMI, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35520] = 21, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35808] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2839), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + STATE(1630), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35592] = 21, + [35883] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1376), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1044), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1227), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35942] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1376), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1227), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36001] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35664] = 21, + ACTIONS(2845), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [36072] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2847), 1, anon_sym_COMMA, - ACTIONS(2741), 1, + ACTIONS(2849), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + STATE(1580), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35736] = 21, + [36147] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - ACTIONS(2743), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2853), 1, + anon_sym_RBRACE, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + STATE(1539), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35808] = 21, + [36222] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1373), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1033), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1233), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36281] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 1, + anon_sym_SEMI, + ACTIONS(2671), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2673), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36332] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2829), 1, + sym_identifier, + ACTIONS(2831), 1, + anon_sym_LPAREN2, + ACTIONS(2833), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1361), 1, + sym__field_declarator, + STATE(1833), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1029), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1231), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36391] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2857), 1, + anon_sym_SEMI, + ACTIONS(2671), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2673), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36442] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35880] = 20, + ACTIONS(2861), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [36515] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2829), 1, + sym_identifier, + ACTIONS(2831), 1, + anon_sym_LPAREN2, + ACTIONS(2833), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1362), 1, + sym__field_declarator, + STATE(1833), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1232), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36574] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym___attribute__, + ACTIONS(2870), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_COLON, + STATE(1013), 1, + sym_attribute_specifier, + STATE(1178), 1, + sym_enumerator_list, + ACTIONS(2865), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2863), 18, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [36621] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1363), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1235), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36680] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2874), 1, + anon_sym_SEMI, + ACTIONS(2671), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2673), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(952), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36731] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2847), 1, + anon_sym_COMMA, + ACTIONS(2876), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + STATE(1553), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2747), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35950] = 21, + [36806] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2749), 1, + ACTIONS(2878), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36022] = 21, + [36878] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2751), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36094] = 7, + [36950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(2757), 1, - anon_sym___attribute__, - STATE(1144), 1, - sym_attribute_specifier, - STATE(1148), 1, - sym_enumerator_list, - ACTIONS(2755), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [36138] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(2882), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2760), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36208] = 20, + [37022] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(2884), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2762), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [36278] = 21, + [37094] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2764), 1, + ACTIONS(2886), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36350] = 21, + [37166] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2766), 1, + ACTIONS(2888), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36422] = 21, + [37238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2768), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2890), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36494] = 21, + [37310] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2770), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2892), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36566] = 21, + [37382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2772), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2894), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36638] = 21, + [37454] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2774), 1, + ACTIONS(2896), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36710] = 21, + [37526] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2898), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36782] = 21, + [37598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2778), 1, - anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36854] = 21, + ACTIONS(2900), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2780), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2902), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36926] = 21, + [37740] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2782), 1, - anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36998] = 21, + ACTIONS(2904), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2784), 1, + ACTIONS(2906), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37070] = 21, + [37882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37142] = 21, + [37954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2870), 1, + anon_sym_LBRACE, + ACTIONS(2914), 1, + anon_sym___attribute__, + STATE(998), 1, + sym_attribute_specifier, + STATE(1173), 1, + sym_enumerator_list, + ACTIONS(2912), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2910), 18, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [37998] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2788), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2917), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37214] = 21, + [38070] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2790), 1, + ACTIONS(2919), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37286] = 21, + [38142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2792), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2921), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37358] = 21, + [38214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2794), 1, + ACTIONS(2923), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37430] = 21, + [38286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2796), 1, + ACTIONS(2925), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37502] = 21, + [38358] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2798), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37574] = 21, + [38430] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2800), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2929), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37646] = 21, + [38502] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2931), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37718] = 21, + [38574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2804), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2933), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37790] = 21, + [38646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2806), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2935), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37862] = 21, + [38718] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2808), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2937), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [37934] = 21, + [38790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2810), 1, + ACTIONS(2939), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38006] = 21, + [38862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2812), 1, + ACTIONS(2941), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38078] = 21, + [38934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2814), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2943), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38150] = 21, + [39006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2816), 1, + ACTIONS(2945), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38222] = 21, + [39078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2818), 1, + ACTIONS(2947), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38294] = 21, + [39150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2820), 1, + ACTIONS(2949), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38366] = 21, + [39222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2822), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2951), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38438] = 21, + [39294] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2824), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2953), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38510] = 21, + [39366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2826), 1, + ACTIONS(2955), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38582] = 21, + [39438] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2828), 1, + ACTIONS(2957), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38654] = 21, + [39510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2959), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38726] = 21, + [39582] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2832), 1, + ACTIONS(2961), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38798] = 21, + [39654] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2834), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2963), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38870] = 21, + [39726] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2836), 1, + ACTIONS(2965), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [38942] = 21, + [39798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2838), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2967), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39014] = 20, + [39870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(2969), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2840), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39084] = 21, + [39942] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2842), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2971), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39156] = 21, + [40014] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2844), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2973), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39228] = 21, + [40086] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2846), 1, + ACTIONS(2975), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39300] = 21, + [40158] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2848), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2977), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39372] = 21, + [40230] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2850), 1, + ACTIONS(2979), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39444] = 21, + [40302] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2852), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2981), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39516] = 21, + [40374] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2854), 1, + ACTIONS(2983), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39588] = 21, + [40446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2856), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39660] = 21, + [40518] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2858), 1, + ACTIONS(2987), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39732] = 21, + [40590] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2860), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2989), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39804] = 21, + [40662] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2862), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(2991), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39876] = 21, + [40734] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2864), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(2993), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [39948] = 21, + [40806] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2866), 1, + ACTIONS(2995), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40020] = 21, + [40878] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2868), 1, - anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40092] = 21, + ACTIONS(2997), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [40948] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2870), 1, + ACTIONS(2999), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40164] = 21, + [41020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2872), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(3001), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40236] = 21, + [41092] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(3003), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40308] = 21, + [41164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2876), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40380] = 21, + [41236] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2878), 1, + ACTIONS(3007), 1, anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40452] = 21, + [41308] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_SEMI, - STATE(785), 1, + ACTIONS(3009), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40524] = 21, + [41380] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(3011), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40596] = 20, + [41452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 2, + ACTIONS(3013), 2, anon_sym_COMMA, - anon_sym_SEMI, - [40666] = 21, + anon_sym_RBRACE, + [41522] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2886), 1, + ACTIONS(3015), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40738] = 20, + [41594] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [40808] = 21, + [41666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2890), 1, - anon_sym_RPAREN, - STATE(785), 1, + ACTIONS(3019), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40880] = 21, + [41738] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2660), 1, - anon_sym_COMMA, - ACTIONS(2892), 1, - anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [40952] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2894), 1, - anon_sym_enum, - STATE(1188), 1, - sym__type_specifier, - STATE(1196), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1905), 1, - sym_type_descriptor, - STATE(1159), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41007] = 15, + ACTIONS(3021), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2274), 2, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3023), 1, + anon_sym_RPAREN, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [41066] = 5, + [41880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1162), 1, - sym_attribute_specifier, - ACTIONS(2912), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2910), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41105] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2200), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3025), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1152), 1, - sym_attribute_specifier, - ACTIONS(2928), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2926), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41213] = 20, + [41952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2930), 1, - anon_sym_COLON, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3027), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41282] = 20, + [42024] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2932), 1, - anon_sym_COLON, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3029), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41351] = 5, + [42096] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1176), 1, - sym_attribute_specifier, - ACTIONS(2936), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2934), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41390] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2938), 1, - anon_sym_RBRACK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3031), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41459] = 20, + [42168] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2940), 1, - anon_sym_RBRACK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3033), 1, + anon_sym_SEMI, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41528] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1841), 1, - sym_identifier, - STATE(1188), 1, - sym__type_specifier, - STATE(1196), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1801), 1, - sym_type_descriptor, - STATE(1154), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41583] = 20, + [42240] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3035), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41652] = 20, + [42312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_RBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3037), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1165), 1, - sym_attribute_specifier, - ACTIONS(2944), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2942), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41760] = 20, + [42384] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41829] = 20, + ACTIONS(3039), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42454] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(3041), 1, + anon_sym_enum, + STATE(1219), 1, + sym__type_specifier, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1770), 1, + sym_type_descriptor, + STATE(1203), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42509] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2948), 1, - anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41898] = 20, + [42578] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2386), 1, - anon_sym_RBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(3069), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41967] = 20, + [42647] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2950), 1, + ACTIONS(3071), 1, anon_sym_COLON, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42036] = 20, + [42716] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_RBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2914), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42105] = 13, + [42785] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -99408,17 +100142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1841), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(2894), 1, + ACTIONS(3041), 1, anon_sym_enum, - STATE(1188), 1, + STATE(1219), 1, sym__type_specifier, - STATE(1196), 1, + STATE(1234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1935), 1, + STATE(1793), 1, sym_type_descriptor, - STATE(1159), 2, + STATE(1203), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -99426,13 +100160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -99441,1160 +100175,1222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42160] = 20, + [42840] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2190), 1, anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2914), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42229] = 20, + [42909] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2202), 1, anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2914), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42298] = 20, + [42978] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2194), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2952), 1, - anon_sym_RPAREN, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42367] = 5, + [43047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1160), 1, - sym_attribute_specifier, - ACTIONS(2956), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2954), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42406] = 20, + anon_sym_PERCENT, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2412), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2410), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [43100] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(3073), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1158), 1, - sym_attribute_specifier, - ACTIONS(2960), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2958), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42514] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1171), 1, - sym_attribute_specifier, - ACTIONS(2964), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2962), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42553] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1163), 1, - sym_attribute_specifier, - ACTIONS(2968), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2966), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42592] = 20, + [43169] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2192), 1, anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2914), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42661] = 19, + [43238] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - STATE(785), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(3075), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2354), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42728] = 20, + [43307] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1219), 1, + sym__type_specifier, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1883), 1, + sym_type_descriptor, + STATE(1176), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43362] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2200), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2970), 1, - anon_sym_COLON, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42797] = 20, + [43431] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_COLON, - STATE(785), 1, + ACTIONS(3077), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42866] = 20, + [43500] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2204), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2974), 1, - anon_sym_COLON, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42935] = 20, + [43569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(3049), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(3053), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(3067), 1, anon_sym_QMARK, - ACTIONS(2976), 1, - anon_sym_COLON, - STATE(785), 1, + ACTIONS(3079), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43004] = 11, + [43638] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - STATE(785), 1, + ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2342), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2270), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [43055] = 20, + [43705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2978), 1, + ACTIONS(3081), 1, anon_sym_COLON, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43124] = 12, + [43774] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - STATE(785), 1, + ACTIONS(3057), 1, + anon_sym_AMP, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2908), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2274), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2270), 9, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [43177] = 20, + [43835] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COLON, - STATE(785), 1, + ACTIONS(3083), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43246] = 12, + [43904] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1219), 1, + sym__type_specifier, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1877), 1, + sym_type_descriptor, + STATE(1176), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43959] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - STATE(785), 1, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(3085), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2908), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2380), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43299] = 14, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2198), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - STATE(785), 1, - sym_argument_list, - ACTIONS(2274), 2, + ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2280), 2, + ACTIONS(3067), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2904), 2, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43356] = 20, + [44097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(3087), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43425] = 20, + [44166] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2629), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - ACTIONS(2982), 1, + ACTIONS(3089), 1, anon_sym_COLON, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2592), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2594), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2598), 2, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2600), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43494] = 20, + [44235] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, - anon_sym_AMP_AMP, - ACTIONS(2918), 1, - anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(3057), 1, anon_sym_AMP, - ACTIONS(2924), 1, - anon_sym_QMARK, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43563] = 16, + ACTIONS(2262), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [44298] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 1, - anon_sym_PIPE, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2922), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 5, + ACTIONS(2262), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [43624] = 17, + [44355] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 1, - anon_sym_PIPE, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2920), 1, - anon_sym_CARET, - ACTIONS(2922), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(3059), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(3061), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(3063), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(3065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 4, + ACTIONS(2262), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [43687] = 10, + [44414] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - STATE(785), 1, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(3091), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2898), 2, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2274), 6, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44483] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3045), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2270), 11, + ACTIONS(2262), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -100602,665 +101398,506 @@ 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_RBRACK, anon_sym_QMARK, - [43736] = 18, + [44536] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2282), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(3047), 1, anon_sym_SLASH, - ACTIONS(2916), 1, - anon_sym_AMP_AMP, - ACTIONS(2918), 1, - anon_sym_PIPE, - ACTIONS(2920), 1, - anon_sym_CARET, - ACTIONS(2922), 1, - anon_sym_AMP, - STATE(785), 1, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(3043), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(3045), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2270), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2262), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 3, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [43801] = 17, + [44587] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2918), 1, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - STATE(785), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(3093), 1, + anon_sym_COLON, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2908), 2, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2270), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43864] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1841), 1, - sym_identifier, - STATE(1188), 1, - sym__type_specifier, - STATE(1196), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1803), 1, - sym_type_descriptor, - STATE(1154), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43919] = 20, + [44656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, - anon_sym_RBRACK, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2900), 1, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2916), 1, + ACTIONS(2626), 1, anon_sym_AMP_AMP, - ACTIONS(2918), 1, + ACTIONS(2628), 1, anon_sym_PIPE, - ACTIONS(2920), 1, + ACTIONS(2630), 1, anon_sym_CARET, - ACTIONS(2922), 1, + ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2924), 1, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, anon_sym_QMARK, - STATE(785), 1, + ACTIONS(3095), 1, + anon_sym_COMMA, + STATE(792), 1, sym_argument_list, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, + ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2896), 2, + ACTIONS(2620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2898), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2902), 2, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 2, + ACTIONS(2636), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2906), 2, + ACTIONS(2638), 2, anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2908), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym___attribute__, - STATE(1143), 1, - sym_attribute_specifier, - ACTIONS(2986), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2984), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2991), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2995), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2999), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3003), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3007), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3011), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44230] = 3, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44725] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2186), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + ACTIONS(3067), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3015), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44264] = 5, + anon_sym_PERCENT, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44794] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym___attribute__, - STATE(1146), 1, - sym_attribute_specifier, - ACTIONS(3021), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2212), 1, + anon_sym_RBRACK, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + ACTIONS(3067), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3019), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44302] = 3, + anon_sym_PERCENT, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44863] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_RBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + ACTIONS(3067), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3026), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44336] = 4, + anon_sym_PERCENT, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(1977), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1964), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2282), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44372] = 3, + ACTIONS(2624), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, + anon_sym_AMP, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + ACTIONS(3097), 1, + anon_sym_COLON, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45001] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3033), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44406] = 3, + anon_sym_PERCENT, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [45064] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3037), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44440] = 3, + anon_sym_PERCENT, + ACTIONS(2270), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [45113] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(3047), 1, + anon_sym_SLASH, + ACTIONS(3051), 1, + anon_sym_AMP_AMP, + ACTIONS(3053), 1, + anon_sym_PIPE, + ACTIONS(3055), 1, + anon_sym_CARET, + ACTIONS(3057), 1, + anon_sym_AMP, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3043), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3045), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3041), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [44474] = 12, + anon_sym_PERCENT, + ACTIONS(3059), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3061), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3063), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [45178] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1841), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - STATE(1192), 1, - sym__type_specifier, - STATE(1196), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1156), 2, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1396), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101269,92 +101906,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44526] = 3, + [45230] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3045), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1859), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [44560] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2444), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3049), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2442), 10, - anon_sym___based, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1407), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1192), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3054), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3052), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101363,29 +101946,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44632] = 3, + [45282] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3056), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1182), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1183), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101394,8 +101986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44666] = 12, + [45334] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -101404,29 +101995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1841), 1, - sym_identifier, - ACTIONS(2894), 1, + ACTIONS(1751), 1, anon_sym_enum, - STATE(1192), 1, + ACTIONS(1833), 1, + sym_identifier, + STATE(1202), 1, sym__type_specifier, - STATE(1196), 1, + STATE(1327), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1156), 2, + STATE(1198), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, + ACTIONS(3099), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1147), 5, + STATE(1020), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101435,28 +102026,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44718] = 3, + [45386] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3060), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1410), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1186), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101465,52 +102066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44752] = 3, + [45438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3064), 25, - anon_sym_extern, + ACTIONS(3105), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 7, + STATE(1025), 1, + sym_attribute_specifier, + ACTIONS(3103), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3068), 19, + ACTIONS(3101), 18, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -101528,23 +102099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44820] = 3, + [45476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3110), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3072), 19, + ACTIONS(3108), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101558,29 +102125,43 @@ 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, - [44854] = 3, + [45510] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3076), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1185), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101589,29 +102170,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44888] = 3, + [45562] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3080), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1223), 1, + sym__type_specifier, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101620,54 +102210,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44922] = 4, + [45614] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_SEMI, - ACTIONS(2404), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_LBRACK, + ACTIONS(2624), 1, anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_AMP_AMP, + ACTIONS(2628), 1, anon_sym_PIPE, + ACTIONS(2630), 1, + anon_sym_CARET, + ACTIONS(2632), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2402), 18, - anon_sym_LPAREN2, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_argument_list, + ACTIONS(2284), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2636), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2638), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [44958] = 5, + [45680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3116), 1, anon_sym___attribute__, - STATE(1172), 1, + STATE(1024), 1, sym_attribute_specifier, - ACTIONS(3088), 6, + ACTIONS(3114), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3086), 18, + ACTIONS(3112), 18, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -101686,59 +102290,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44996] = 3, + [45718] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3093), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1859), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [45030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3097), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1404), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1188), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101747,60 +102330,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45064] = 3, + [45770] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3101), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1859), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [45098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3107), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3105), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1397), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1191), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101809,29 +102370,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45132] = 3, + [45822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3109), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1172), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1175), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101840,76 +102410,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45166] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2629), 1, - anon_sym_QMARK, - STATE(785), 1, - sym_argument_list, - ACTIONS(2280), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2282), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2594), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2598), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45232] = 3, + [45874] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3113), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1416), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1184), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101918,29 +102450,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45266] = 3, + [45926] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3117), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1179), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101949,29 +102490,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45300] = 3, + [45978] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3121), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1406), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101980,37 +102530,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45334] = 11, + [46030] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3129), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1181), 2, + STATE(1402), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1187), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1205), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102019,36 +102570,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45383] = 11, + [46082] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3131), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1156), 2, + STATE(1403), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1225), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102057,36 +102610,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45432] = 11, + [46134] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3133), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1183), 2, + STATE(1399), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1199), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102095,36 +102650,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45481] = 11, + [46186] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1156), 2, + STATE(1401), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1210), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102133,36 +102690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45530] = 11, + [46238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3137), 1, - sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1156), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1207), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(2444), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3119), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102171,36 +102712,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45579] = 11, + ACTIONS(2442), 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, + [46276] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + sym_primitive_type, ACTIONS(51), 1, anon_sym_struct, ACTIONS(53), 1, anon_sym_union, ACTIONS(1751), 1, anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(3139), 1, - sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1180), 2, + STATE(1200), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1208), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(3099), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1215), 5, - sym__typedef_type_specifier, + STATE(1020), 5, + sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102209,36 +102763,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45628] = 11, + [46328] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1156), 2, + STATE(1405), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1214), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102247,36 +102803,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45677] = 11, + [46380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3143), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1178), 2, + STATE(1392), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1228), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102285,36 +102843,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45726] = 11, + [46432] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3145), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1186), 2, + STATE(1400), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1168), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1197), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102323,36 +102883,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45775] = 11, + [46484] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(3125), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - STATE(1328), 1, - aux_sym__typedef_sized_type_specifier, - STATE(1156), 2, + STATE(1421), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3127), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1202), 5, - sym__typedef_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102361,29 +102923,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45824] = 6, + [46536] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(3156), 1, - anon_sym_LBRACK, - ACTIONS(1977), 2, - anon_sym_COMMA, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(3149), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1964), 18, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1419), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102392,35 +102963,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45862] = 11, + [46588] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2092), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1459), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1193), 2, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1411), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3159), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102428,63 +103003,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45908] = 5, + [46640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, - anon_sym_LPAREN2, - STATE(1248), 1, - sym_preproc_argument_list, - ACTIONS(3167), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3163), 15, + ACTIONS(3126), 1, + anon_sym___attribute__, + STATE(993), 1, + sym_attribute_specifier, + ACTIONS(3124), 6, 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, - [45942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2506), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3122), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(1470), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2654), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102492,34 +103035,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45988] = 11, + sym_identifier, + [46678] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, - anon_sym_LPAREN2, - ACTIONS(2092), 1, - anon_sym_STAR, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1458), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1156), 2, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1193), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3169), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102527,34 +103076,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46034] = 11, + [46730] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2092), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1471), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1191), 2, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1414), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3171), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102562,34 +103116,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46080] = 11, + [46782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2092), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1455), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1156), 2, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1409), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + STATE(1194), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3173), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102597,34 +103156,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46126] = 11, + [46834] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_const, - ACTIONS(2090), 1, - anon_sym_LPAREN2, - ACTIONS(2092), 1, - anon_sym_STAR, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1469), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1190), 2, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1209), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3161), 7, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102632,31 +103196,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46172] = 10, + [46886] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2588), 1, anon_sym_STAR, - STATE(1377), 1, - sym__declarator, - STATE(1811), 1, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1395), 1, + sym__type_declarator, + STATE(1907), 1, sym_ms_based_modifier, - STATE(1156), 2, + STATE(1199), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102665,28 +103236,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46215] = 7, + [46938] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(47), 1, sym_primitive_type, - ACTIONS(3175), 1, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1833), 1, sym_identifier, - STATE(926), 1, + ACTIONS(3041), 1, + anon_sym_enum, + STATE(1223), 1, + sym__type_specifier, + STATE(1234), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2650), 4, + STATE(1189), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2646), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2648), 8, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102695,31 +103276,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46252] = 10, + [46990] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2588), 1, anon_sym_STAR, - STATE(1423), 1, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1408), 1, sym__type_declarator, - STATE(1785), 1, + STATE(1907), 1, sym_ms_based_modifier, - STATE(1198), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102728,31 +103316,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46295] = 10, + [47042] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(2666), 1, - anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, - STATE(1424), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, + STATE(1180), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1201), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102761,31 +103356,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46338] = 10, + [47094] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2588), 1, anon_sym_STAR, - STATE(1399), 1, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1418), 1, sym__type_declarator, - STATE(1785), 1, + STATE(1907), 1, sym_ms_based_modifier, - STATE(1212), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102794,64 +103396,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46381] = 10, + [47146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3179), 1, - anon_sym_RPAREN, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3189), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3129), 1, + anon_sym_SEMI, + ACTIONS(2440), 7, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1213), 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, - [46424] = 10, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2438), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [47182] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, sym_identifier, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - anon_sym_STAR, - STATE(1380), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - STATE(1156), 2, + STATE(1169), 1, + sym__type_specifier, + STATE(1327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + ACTIONS(3099), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1020), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102860,31 +103468,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46467] = 10, + [47234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2586), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2588), 1, anon_sym_STAR, - STATE(1409), 1, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1413), 1, sym__type_declarator, - STATE(1785), 1, + STATE(1907), 1, sym_ms_based_modifier, - STATE(1229), 2, + STATE(1206), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1463), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102893,31 +103508,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46510] = 10, + [47286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2870), 1, + anon_sym_LBRACE, + ACTIONS(3131), 1, + anon_sym_COLON, + STATE(1013), 1, + sym_attribute_specifier, + STATE(1215), 1, + sym_enumerator_list, + ACTIONS(2865), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1404), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_LBRACK, + ACTIONS(2863), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102926,31 +103541,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46553] = 10, + sym_primitive_type, + sym_identifier, + [47329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2672), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2870), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_attribute_specifier, + STATE(1216), 1, + sym_enumerator_list, + ACTIONS(2912), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2674), 1, anon_sym_STAR, - STATE(1381), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2910), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102959,31 +103575,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46596] = 10, + sym_primitive_type, + sym_identifier, + [47370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + STATE(1221), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3135), 2, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1413), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1206), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(3140), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1212), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3137), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3133), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102992,31 +103609,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46639] = 10, + sym_primitive_type, + sym_identifier, + [47411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(3146), 1, + anon_sym_LPAREN2, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(1977), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3143), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1964), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(2664), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - ACTIONS(2666), 1, + [47449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(993), 1, + sym_attribute_specifier, + ACTIONS(3124), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1396), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3122), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103025,31 +103671,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46682] = 10, + sym_primitive_type, + sym_identifier, + [47484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1024), 1, + sym_attribute_specifier, + ACTIONS(3114), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3112), 15, anon_sym___based, - ACTIONS(2664), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, - ACTIONS(2666), 1, + [47519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1025), 1, + sym_attribute_specifier, + ACTIONS(3103), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1397), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1209), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3101), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103058,65 +103731,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46725] = 10, + sym_primitive_type, + sym_identifier, + [47554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3155), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3193), 1, + STATE(1294), 1, + sym_preproc_argument_list, + ACTIONS(3157), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3153), 15, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3195), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1217), 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, - [46768] = 10, + 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, + [47588] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1398), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, + ACTIONS(2825), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103124,31 +103797,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46811] = 10, + [47634] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1407), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1216), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1465), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1224), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + ACTIONS(3161), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3163), 20, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [47710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3169), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3167), 20, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103157,32 +103884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46854] = 10, + sym_primitive_type, + sym_identifier, + [47740] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1419), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, + ACTIONS(3171), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103190,32 +103921,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46897] = 10, + [47786] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1421), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1459), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1222), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, + ACTIONS(3173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103223,71 +103956,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46940] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3199), 1, - anon_sym_RPAREN, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3209), 1, - anon_sym_AMP_AMP, - ACTIONS(3211), 1, - anon_sym_PIPE, - ACTIONS(3213), 1, - anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - STATE(1543), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46995] = 10, + [47832] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1418), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1211), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1457), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, + ACTIONS(3175), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103295,32 +103991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47038] = 10, + [47878] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(2128), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2130), 1, anon_sym_STAR, - STATE(1410), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1203), 2, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1456), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1218), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, + ACTIONS(2498), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3159), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103328,31 +104026,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47081] = 10, + [47924] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(3177), 1, + sym_identifier, + ACTIONS(3179), 1, + anon_sym_RPAREN, + ACTIONS(3181), 1, + anon_sym_LPAREN2, + ACTIONS(3183), 1, + anon_sym_defined, + ACTIONS(3189), 1, + sym_number_literal, + ACTIONS(3185), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3187), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3191), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1228), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [47967] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1422), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1363), 1, + sym__declarator, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1156), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103361,154 +104092,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47124] = 16, + [48010] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3193), 1, anon_sym_COMMA, - ACTIONS(3205), 1, + ACTIONS(3195), 1, + anon_sym_RPAREN, + ACTIONS(3201), 1, anon_sym_SLASH, - ACTIONS(3207), 1, + ACTIONS(3203), 1, anon_sym_PIPE_PIPE, - ACTIONS(3209), 1, + ACTIONS(3205), 1, anon_sym_AMP_AMP, - ACTIONS(3211), 1, + ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3213), 1, + ACTIONS(3209), 1, anon_sym_CARET, - ACTIONS(3215), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3225), 1, - anon_sym_RPAREN, - STATE(1621), 1, + STATE(1581), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3203), 2, + ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3217), 2, + ACTIONS(3213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3219), 2, + ACTIONS(3215), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3221), 2, + ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3223), 2, + ACTIONS(3219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47179] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_STAR, - STATE(1360), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47222] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_STAR, - STATE(1361), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47265] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_STAR, - STATE(1376), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47308] = 5, - ACTIONS(3163), 1, + [48065] = 5, + ACTIONS(3153), 1, anon_sym_LF, - ACTIONS(3227), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3223), 1, sym_comment, - STATE(1296), 1, + STATE(1295), 1, sym_preproc_argument_list, - ACTIONS(3167), 18, + ACTIONS(3157), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103527,64 +104159,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [47341] = 10, + [48098] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, - STATE(1402), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47384] = 10, + ACTIONS(3183), 1, + anon_sym_defined, + ACTIONS(3225), 1, + anon_sym_RPAREN, + ACTIONS(3227), 1, + sym_number_literal, + ACTIONS(3185), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3187), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3191), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1236), 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, + [48141] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1415), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1372), 1, + sym__field_declarator, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1156), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103593,31 +104225,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47427] = 10, + [48184] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1400), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1370), 1, + sym__field_declarator, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1156), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103626,31 +104258,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47470] = 10, + [48227] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1411), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1376), 1, + sym__declarator, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1224), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103659,31 +104291,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47513] = 10, + [48270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2811), 1, + sym_primitive_type, + ACTIONS(3229), 1, sym_identifier, - ACTIONS(2666), 1, + STATE(922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2805), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2668), 1, anon_sym_STAR, - STATE(1412), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2807), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103692,31 +104321,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47556] = 10, + [48307] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1395), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1367), 1, + sym__declarator, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1156), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103725,31 +104354,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47599] = 10, + [48350] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(3193), 1, + anon_sym_COMMA, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3203), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3205), 1, + anon_sym_AMP_AMP, + ACTIONS(3207), 1, + anon_sym_PIPE, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3231), 1, + anon_sym_RPAREN, + STATE(1554), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48405] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1414), 1, - sym__type_declarator, - STATE(1785), 1, + STATE(1362), 1, + sym__field_declarator, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1189), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103758,40 +104426,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47642] = 10, + [48448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(2666), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, - STATE(1403), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47685] = 9, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3243), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1315), 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, + [48488] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -103800,7 +104466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3231), 1, + ACTIONS(3247), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103814,7 +104480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1282), 7, + STATE(1268), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103822,38 +104488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47725] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3235), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 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, - [47765] = 9, + [48528] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -103862,7 +104497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3237), 1, + ACTIONS(3249), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103876,7 +104511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1314), 7, + STATE(1262), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103884,60 +104519,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47805] = 8, + [48568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(3239), 1, - anon_sym_COLON, - STATE(1174), 1, - sym_attribute_specifier, - STATE(1322), 1, - sym_enumerator_list, - ACTIONS(2680), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2678), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(3233), 1, sym_identifier, - [47843] = 9, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3251), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1306), 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, + [48608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3251), 1, + ACTIONS(3253), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1318), 7, + STATE(1261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103945,30 +104581,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47883] = 9, + [48648] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, ACTIONS(3255), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1317), 7, + STATE(1302), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103976,30 +104612,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47923] = 9, + [48688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, ACTIONS(3257), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1305), 7, + STATE(1260), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104007,7 +104643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47963] = 3, + [48728] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3261), 5, @@ -104032,66 +104668,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47991] = 14, + [48756] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3209), 1, - anon_sym_AMP_AMP, - ACTIONS(3211), 1, - anon_sym_PIPE, - ACTIONS(3213), 1, - anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3201), 2, + ACTIONS(3233), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3263), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3263), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48041] = 9, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1318), 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, + [48796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, ACTIONS(3265), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1303), 7, + STATE(1320), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104099,30 +104730,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48081] = 9, + [48836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, ACTIONS(3267), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1294), 7, + STATE(1323), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104130,30 +104761,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48121] = 9, + [48876] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, ACTIONS(3269), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1298), 7, + STATE(1324), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104161,30 +104792,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48161] = 9, + [48916] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1299), 7, + STATE(1245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104192,30 +104823,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48201] = 9, + [48956] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, ACTIONS(3273), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1302), 7, + STATE(1325), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104223,30 +104854,415 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48241] = 9, + [48996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3275), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1296), 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, + [49036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3277), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1319), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [49076] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3279), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1322), 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, + [49116] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3281), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1307), 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, + [49156] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_defined, + ACTIONS(3283), 1, + sym_number_literal, + ACTIONS(3239), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3245), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1310), 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, + [49196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3287), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 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, + [49224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3291), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3289), 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, + [49252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3295), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3293), 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, + [49280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3299), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3297), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3297), 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, + [49340] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3205), 1, + anon_sym_AMP_AMP, + ACTIONS(3207), 1, + anon_sym_PIPE, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [49388] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, + anon_sym_PIPE, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49434] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3299), 1, + anon_sym_PIPE, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49480] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3177), 1, + sym_identifier, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3275), 1, + ACTIONS(3301), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1291), 7, + STATE(1264), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104254,30 +105270,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48281] = 9, + [49520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3277), 1, + ACTIONS(3303), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1306), 7, + STATE(1321), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104285,7 +105301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48321] = 9, + [49560] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -104294,7 +105310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3279), 1, + ACTIONS(3305), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -104308,38 +105324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 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, - [48361] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3281), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1320), 7, + STATE(1263), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104347,78 +105332,150 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48401] = 3, + [49600] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 5, + ACTIONS(3201), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3211), 1, anon_sym_AMP, + ACTIONS(3299), 1, + anon_sym_PIPE, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3283), 15, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49644] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48429] = 9, + ACTIONS(3299), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3297), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49686] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3287), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1293), 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, - [48469] = 3, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3215), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3299), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3297), 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, + [49726] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 5, + ACTIONS(3201), 1, anon_sym_SLASH, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3299), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3289), 15, + ACTIONS(3297), 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, + [49762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3299), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3297), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -104428,121 +105485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48497] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1327), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3295), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3300), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1251), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3297), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3293), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [48533] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3303), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1307), 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, - [48573] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3305), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1297), 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, - [48613] = 9, + [49796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, ACTIONS(3307), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1309), 7, + STATE(1272), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104550,55 +105516,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3311), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3309), 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, - [48681] = 9, + [49836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3313), 1, + ACTIONS(3309), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1310), 7, + STATE(1308), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104606,7 +105547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48721] = 9, + [49876] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -104615,7 +105556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3315), 1, + ACTIONS(3311), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -104629,7 +105570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1284), 7, + STATE(1311), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104637,30 +105578,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48761] = 9, + [49916] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3317), 1, + ACTIONS(3313), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1283), 7, + STATE(1312), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104668,7 +105609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48801] = 9, + [49956] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -104677,7 +105618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3319), 1, + ACTIONS(3315), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -104691,7 +105632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1280), 7, + STATE(1269), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104699,16 +105640,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48841] = 3, + [49996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, + ACTIONS(3319), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3321), 15, + ACTIONS(3317), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104724,78 +105665,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48869] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3325), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1255), 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, - [48909] = 9, + [50024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3327), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3323), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3321), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1312), 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, - [48949] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 5, + ACTIONS(3327), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3329), 15, + ACTIONS(3325), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104811,30 +105715,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48977] = 9, + [50080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3333), 1, + ACTIONS(3329), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1279), 7, + STATE(1304), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104842,36 +105746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49017] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2685), 1, - anon_sym_LBRACE, - STATE(1144), 1, - sym_attribute_specifier, - STATE(1323), 1, - sym_enumerator_list, - ACTIONS(2755), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2753), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [49053] = 9, + [50120] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -104880,7 +105755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3335), 1, + ACTIONS(3331), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -104894,7 +105769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1278), 7, + STATE(1309), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104902,30 +105777,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49093] = 9, + [50160] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3337), 1, + ACTIONS(3333), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1277), 7, + STATE(1313), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104933,30 +105808,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49133] = 9, + [50200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3339), 1, + ACTIONS(3335), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, + STATE(1317), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104964,151 +105839,74 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49173] = 3, + [50240] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 5, + ACTIONS(3201), 1, anon_sym_SLASH, + ACTIONS(3203), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3205), 1, + anon_sym_AMP_AMP, + ACTIONS(3207), 1, anon_sym_PIPE, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2430), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49201] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3341), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1316), 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, - [49241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3235), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3215), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3233), 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, + ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49275] = 9, + ACTIONS(3337), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50290] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3343), 1, + ACTIONS(3339), 1, sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1308), 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, - [49315] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3235), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3233), 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, - [49351] = 9, + ACTIONS(3185), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3187), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3191), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1285), 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, + [50330] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -105117,7 +105915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3345), 1, + ACTIONS(3341), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -105131,7 +105929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1273), 7, + STATE(1270), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105139,30 +105937,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49391] = 9, + [50370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3347), 1, + ACTIONS(3343), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1319), 7, + STATE(1297), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105170,7 +105968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49431] = 9, + [50410] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, @@ -105179,7 +105977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3349), 1, + ACTIONS(3345), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -105201,163 +105999,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49471] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3235), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [49513] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [49557] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3213), 1, - anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [49603] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3211), 1, - anon_sym_PIPE, - ACTIONS(3213), 1, - anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [49649] = 9, + [50450] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3351), 1, + ACTIONS(3347), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1321), 7, + STATE(1305), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105365,51 +106030,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49689] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3209), 1, - anon_sym_AMP_AMP, - ACTIONS(3211), 1, - anon_sym_PIPE, - ACTIONS(3213), 1, - anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3219), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [49737] = 3, + [50490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 5, + ACTIONS(2416), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3233), 15, + ACTIONS(2414), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105425,88 +106055,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49765] = 5, + [50518] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3203), 2, + ACTIONS(1855), 1, + anon_sym_LPAREN2, + ACTIONS(1857), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3235), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3233), 13, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1431), 1, + sym__declarator, + STATE(1498), 1, + sym__abstract_declarator, + STATE(1499), 1, + sym_parameter_list, + STATE(1886), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49797] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - ACTIONS(3245), 1, - anon_sym_defined, - ACTIONS(3353), 1, - sym_number_literal, - ACTIONS(3247), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1290), 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, - [49837] = 9, + STATE(1475), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [50566] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3245), 1, + ACTIONS(3237), 1, anon_sym_defined, - ACTIONS(3355), 1, + ACTIONS(3351), 1, sym_number_literal, - ACTIONS(3247), 2, + ACTIONS(3239), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3249), 2, + ACTIONS(3241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3245), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1313), 7, + STATE(1298), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105514,16 +106121,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49877] = 3, + [50606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 5, + ACTIONS(3355), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3357), 15, + ACTIONS(3353), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105539,201 +106146,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49905] = 3, - ACTIONS(3), 1, + [50634] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3363), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3361), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3353), 1, + anon_sym_LF, + ACTIONS(3355), 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_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, - [49933] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_LPAREN2, - ACTIONS(1867), 1, - anon_sym_STAR, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_LBRACK, - STATE(1440), 1, - sym__declarator, - STATE(1479), 1, - sym__abstract_declarator, - STATE(1504), 1, - sym_parameter_list, - STATE(1811), 1, - sym_ms_based_modifier, - ACTIONS(3365), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1482), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [49981] = 12, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3367), 1, - anon_sym_LF, - ACTIONS(3373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, - anon_sym_AMP_AMP, - ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3371), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50026] = 9, - ACTIONS(3229), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50661] = 9, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3381), 1, + ACTIONS(3361), 1, anon_sym_AMP, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3235), 4, + ACTIONS(3299), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50065] = 3, - ACTIONS(2430), 1, - anon_sym_LF, - ACTIONS(3229), 1, + [50700] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(2432), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_LF, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, anon_sym_AMP_AMP, + ACTIONS(3375), 1, anon_sym_PIPE, + ACTIONS(3377), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3367), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50092] = 14, - ACTIONS(3), 1, + [50745] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3207), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3209), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3211), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3213), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3389), 1, - anon_sym_RPAREN, - ACTIONS(3201), 2, + ACTIONS(3379), 1, + anon_sym_LF, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3219), 2, + ACTIONS(3367), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3365), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3223), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50141] = 5, - ACTIONS(3229), 1, + anon_sym_LT, + [50790] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3289), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3291), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3235), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105747,12 +106290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50172] = 3, - ACTIONS(3229), 1, + [50817] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3325), 1, anon_sym_LF, - ACTIONS(3323), 18, + ACTIONS(3327), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105771,12 +106314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50199] = 3, - ACTIONS(3229), 1, + [50844] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(3317), 1, anon_sym_LF, - ACTIONS(3285), 18, + ACTIONS(3319), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105795,55 +106338,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50226] = 12, - ACTIONS(3229), 1, + [50871] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_CARET, ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3391), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50271] = 6, - ACTIONS(3229), 1, + [50916] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3285), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3287), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3235), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105855,150 +106393,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50304] = 7, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_LF, - ACTIONS(3369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3385), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3235), 7, + [50943] = 12, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, anon_sym_AMP_AMP, + ACTIONS(3375), 1, anon_sym_PIPE, + ACTIONS(3377), 1, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50339] = 3, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3329), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3331), 18, + ACTIONS(3357), 2, 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, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50366] = 3, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3259), 1, - anon_sym_LF, - ACTIONS(3261), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3359), 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(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50393] = 8, - ACTIONS(3229), 1, + [50988] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, + anon_sym_AMP_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3385), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3235), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [50430] = 12, - ACTIONS(3229), 1, + [51033] = 4, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3297), 1, + anon_sym_LF, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3299), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3393), 1, - anon_sym_LF, - ACTIONS(3369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3371), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50475] = 3, - ACTIONS(3229), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51062] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3359), 18, + ACTIONS(3299), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106017,174 +106510,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50502] = 12, - ACTIONS(3229), 1, + [51089] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3395), 1, + ACTIONS(3387), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50547] = 10, - ACTIONS(3229), 1, + [51134] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_LF, - ACTIONS(3379), 1, - anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3235), 3, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3203), 1, anon_sym_PIPE_PIPE, + ACTIONS(3205), 1, anon_sym_AMP_AMP, + ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3371), 3, + ACTIONS(3209), 1, + anon_sym_CARET, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3389), 1, + anon_sym_RPAREN, + ACTIONS(3197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3199), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [50588] = 11, - ACTIONS(3229), 1, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51183] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3377), 1, - anon_sym_PIPE, - ACTIONS(3379), 1, - anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3235), 2, + ACTIONS(3299), 1, anon_sym_PIPE_PIPE, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3369), 2, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50631] = 12, - ACTIONS(3229), 1, + [51228] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3201), 1, + anon_sym_SLASH, + ACTIONS(3203), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3205), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3209), 1, anon_sym_CARET, - ACTIONS(3381), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3391), 1, + anon_sym_RPAREN, + ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3199), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3213), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3215), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [50676] = 12, - ACTIONS(3229), 1, + ACTIONS(3219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51277] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_LF, - ACTIONS(3235), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3369), 2, + ACTIONS(3393), 1, + anon_sym_LF, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50721] = 3, - ACTIONS(3229), 1, + [51322] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3259), 1, anon_sym_LF, - ACTIONS(3235), 18, + ACTIONS(3261), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106203,12 +106703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50748] = 3, - ACTIONS(3229), 1, + [51349] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3321), 1, anon_sym_LF, - ACTIONS(3291), 18, + ACTIONS(3323), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106227,18 +106727,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50775] = 4, - ACTIONS(3229), 1, + [51376] = 11, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3371), 3, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3299), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3363), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3367), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3235), 15, + ACTIONS(3365), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51419] = 3, + ACTIONS(2414), 1, + anon_sym_LF, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(2416), 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, @@ -106252,85 +106783,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50804] = 12, - ACTIONS(3229), 1, + [51446] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3399), 1, + ACTIONS(3395), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50849] = 14, - ACTIONS(3), 1, + [51491] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_SLASH, - ACTIONS(3207), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3209), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3211), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3213), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3401), 1, - anon_sym_RPAREN, - ACTIONS(3201), 2, + ACTIONS(3397), 1, + anon_sym_LF, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3203), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3217), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3219), 2, + ACTIONS(3367), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3365), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3223), 2, + anon_sym_LT, + [51536] = 12, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, + anon_sym_AMP_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3399), 1, + anon_sym_LF, + ACTIONS(3357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3363), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50898] = 3, - ACTIONS(3229), 1, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3365), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51581] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3363), 18, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3299), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106344,83 +106908,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50925] = 12, - ACTIONS(3229), 1, + [51612] = 12, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3361), 1, + anon_sym_AMP, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3403), 1, + ACTIONS(3401), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50970] = 12, - ACTIONS(3229), 1, + [51657] = 10, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, - anon_sym_AMP_AMP, + ACTIONS(3297), 1, + anon_sym_LF, + ACTIONS(3361), 1, + anon_sym_AMP, ACTIONS(3377), 1, - anon_sym_PIPE, - ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3405), 1, - anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3299), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51015] = 3, - ACTIONS(3229), 1, + [51698] = 6, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3311), 18, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3299), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106432,172 +106999,105 @@ 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, - [51042] = 12, - ACTIONS(3229), 1, + [51731] = 7, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, - anon_sym_AMP_AMP, - ACTIONS(3377), 1, - anon_sym_PIPE, - ACTIONS(3379), 1, - anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51087] = 12, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3373), 1, + ACTIONS(3299), 7, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3409), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [51766] = 8, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3297), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, + ACTIONS(3363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 2, + ACTIONS(3367), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3371), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, + ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51132] = 12, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3373), 1, + ACTIONS(3299), 5, anon_sym_PIPE_PIPE, - ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3411), 1, + [51803] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3293), 1, anon_sym_LF, - ACTIONS(3369), 2, + ACTIONS(3295), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 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, - [51177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1143), 1, - sym_attribute_specifier, - ACTIONS(2986), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2984), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [51207] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1146), 1, - sym_attribute_specifier, - ACTIONS(3021), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3019), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2802), 1, sym_identifier, - [51237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1172), 1, - sym_attribute_specifier, - ACTIONS(3088), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3406), 1, + sym_primitive_type, + STATE(922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2805), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3086), 10, + ACTIONS(3403), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2807), 9, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -106607,115 +107107,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [51267] = 3, + [51864] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3413), 15, + ACTIONS(1859), 1, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [51292] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1326), 1, - aux_sym__typedef_sized_type_specifier, - ACTIONS(3419), 2, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(3421), 4, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1440), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3417), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [51321] = 3, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [51902] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3424), 15, + ACTIONS(1859), 1, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [51346] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1326), 1, - aux_sym__typedef_sized_type_specifier, - ACTIONS(3430), 2, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(3127), 4, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1448), 1, + sym__type_declarator, + STATE(1907), 1, + sym_ms_based_modifier, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3428), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [51375] = 8, + STATE(1463), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [51940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2863), 1, anon_sym_const, - ACTIONS(2685), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3434), 1, + ACTIONS(3411), 1, anon_sym_COLON, - STATE(1174), 1, + STATE(1013), 1, sym_attribute_specifier, - STATE(1322), 1, + STATE(1215), 1, sym_enumerator_list, - ACTIONS(2680), 10, + ACTIONS(2865), 10, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, @@ -106726,858 +107189,803 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3439), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3437), 14, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_identifier, - [51433] = 11, + [51974] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2701), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, + ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(3441), 1, + ACTIONS(3414), 1, anon_sym_SEMI, STATE(1335), 1, sym__field_declarator, - STATE(1835), 1, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1988), 1, + STATE(1834), 1, sym_attribute_specifier, - STATE(1445), 5, + STATE(1425), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [51471] = 11, + [52012] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2701), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, + ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(3443), 1, + ACTIONS(3416), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1336), 1, sym__field_declarator, - STATE(1835), 1, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1885), 1, + STATE(1942), 1, sym_attribute_specifier, - STATE(1445), 5, + STATE(1425), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [51509] = 11, + [52050] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2701), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, + ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(3445), 1, + ACTIONS(3418), 1, anon_sym_SEMI, - STATE(1337), 1, + STATE(1338), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1811), 1, sym_attribute_specifier, - STATE(1835), 1, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1445), 5, + STATE(1425), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [51547] = 11, + [52088] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2701), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2703), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, + ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(3447), 1, + ACTIONS(3420), 1, anon_sym_SEMI, - STATE(1336), 1, + STATE(1337), 1, sym__field_declarator, - STATE(1733), 1, - sym_attribute_specifier, - STATE(1835), 1, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1445), 5, + STATE(1882), 1, + sym_attribute_specifier, + STATE(1425), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [51585] = 13, + [52126] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3453), 1, + ACTIONS(3426), 1, anon_sym_SEMI, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3457), 1, + ACTIONS(3430), 1, anon_sym_COLON, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1477), 1, - sym_bitfield_clause, - STATE(1496), 1, + STATE(1488), 1, aux_sym_field_declaration_repeat1, - STATE(1931), 1, + STATE(1491), 1, + sym_bitfield_clause, + STATE(1781), 1, sym_attribute_specifier, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51626] = 13, + [52167] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3457), 1, + ACTIONS(3430), 1, anon_sym_COLON, - ACTIONS(3459), 1, + ACTIONS(3432), 1, anon_sym_SEMI, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1480), 1, - aux_sym_field_declaration_repeat1, - STATE(1481), 1, + STATE(1493), 1, sym_bitfield_clause, - STATE(1722), 1, + STATE(1500), 1, + aux_sym_field_declaration_repeat1, + STATE(1917), 1, sym_attribute_specifier, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51667] = 13, + [52208] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3457), 1, + ACTIONS(3430), 1, anon_sym_COLON, - ACTIONS(3461), 1, + ACTIONS(3434), 1, anon_sym_SEMI, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1493), 1, - sym_bitfield_clause, STATE(1494), 1, + sym_bitfield_clause, + STATE(1496), 1, aux_sym_field_declaration_repeat1, - STATE(1884), 1, + STATE(1913), 1, sym_attribute_specifier, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51708] = 13, + [52249] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3457), 1, + ACTIONS(3430), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3436), 1, anon_sym_SEMI, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1483), 1, + STATE(1487), 1, aux_sym_field_declaration_repeat1, - STATE(1484), 1, + STATE(1489), 1, sym_bitfield_clause, - STATE(1874), 1, + STATE(1802), 1, sym_attribute_specifier, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51749] = 9, + [52290] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1354), 1, + STATE(1381), 1, sym__declarator, - STATE(1620), 1, + STATE(1571), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51781] = 9, + [52322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1391), 1, + STATE(1353), 1, sym__declarator, - STATE(1569), 1, + STATE(1620), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51813] = 9, + [52354] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + anon_sym_SEMI, + ACTIONS(3442), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, + anon_sym_EQ, + STATE(460), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1542), 1, + aux_sym_declaration_repeat1, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1357), 1, + STATE(1349), 1, sym__declarator, - STATE(1599), 1, + STATE(1571), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51845] = 9, + [52424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(3448), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LBRACK, + STATE(1343), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3446), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [52448] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1386), 1, + STATE(1380), 1, sym__declarator, - STATE(1620), 1, + STATE(1628), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51877] = 9, + [52480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, STATE(1347), 1, sym__declarator, - STATE(1628), 1, + STATE(1598), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51909] = 9, + [52512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1393), 1, + STATE(1420), 1, sym__declarator, - STATE(1575), 1, + STATE(1657), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, - anon_sym_LPAREN2, - ACTIONS(3470), 1, - anon_sym_STAR, - ACTIONS(3465), 10, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [51963] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3474), 1, - anon_sym_SEMI, - ACTIONS(3476), 1, - anon_sym_LBRACK, - ACTIONS(3478), 1, - anon_sym_EQ, - STATE(153), 1, - sym_compound_statement, - STATE(1362), 1, - sym_parameter_list, - STATE(1588), 1, - aux_sym_declaration_repeat1, - STATE(1387), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52001] = 12, + [52544] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3480), 1, + ACTIONS(3453), 1, anon_sym_SEMI, - STATE(494), 1, + STATE(495), 1, sym_compound_statement, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1625), 1, + STATE(1584), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52039] = 9, + [52582] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, STATE(1390), 1, sym__declarator, - STATE(1628), 1, + STATE(1573), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52071] = 9, + [52614] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, + anon_sym_EQ, + ACTIONS(3455), 1, + anon_sym_SEMI, + STATE(220), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1552), 1, + aux_sym_declaration_repeat1, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52652] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1382), 1, sym__declarator, - STATE(1569), 1, + STATE(1620), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52103] = 9, + [52684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1383), 1, + STATE(1355), 1, sym__declarator, - STATE(1606), 1, + STATE(1628), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52135] = 9, + [52716] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1389), 1, + STATE(1387), 1, sym__declarator, - STATE(1599), 1, + STATE(1605), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52167] = 5, + [52748] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3487), 1, + ACTIONS(652), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1352), 2, + ACTIONS(3444), 1, + anon_sym_EQ, + ACTIONS(3457), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1622), 1, + aux_sym_declaration_repeat1, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3482), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [52191] = 9, + [52786] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1406), 1, + STATE(1386), 1, sym__declarator, - STATE(1656), 1, + STATE(1598), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52223] = 12, + [52818] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, + ACTIONS(123), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3489), 1, + ACTIONS(3459), 1, anon_sym_SEMI, - STATE(216), 1, + STATE(147), 1, sym_compound_statement, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1613), 1, + STATE(1610), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52261] = 9, + [52856] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1346), 1, + STATE(1341), 1, sym__declarator, - STATE(1606), 1, + STATE(1605), 1, sym_init_declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52293] = 12, + [52888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3409), 1, + anon_sym___attribute__, + ACTIONS(3463), 1, + anon_sym_LBRACK, + STATE(1364), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3461), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(593), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3476), 1, - anon_sym_LBRACK, - ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_SEMI, - STATE(463), 1, - sym_compound_statement, - STATE(1362), 1, - sym_parameter_list, - STATE(1562), 1, - aux_sym_declaration_repeat1, - STATE(1387), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52331] = 12, + [52911] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3476), 1, - anon_sym_LBRACK, - ACTIONS(3478), 1, - anon_sym_EQ, - ACTIONS(3493), 1, - anon_sym_SEMI, - STATE(490), 1, - sym_compound_statement, - STATE(1362), 1, - sym_parameter_list, - STATE(1571), 1, - aux_sym_declaration_repeat1, - STATE(1387), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52369] = 8, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1451), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1430), 1, + STATE(1432), 1, sym__declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52398] = 7, + [52969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(3495), 1, - anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_COLON, - STATE(1554), 1, - sym_gnu_asm_output_operand_list, - STATE(754), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [52425] = 7, + ACTIONS(2831), 1, + anon_sym_LPAREN2, + ACTIONS(2833), 1, + anon_sym_STAR, + STATE(1371), 1, + sym__field_declarator, + STATE(1833), 1, + sym_ms_based_modifier, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [52998] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3499), 5, + ACTIONS(3465), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [52452] = 7, + [53025] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3501), 5, + ACTIONS(3467), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [52479] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - anon_sym___attribute__, - ACTIONS(3505), 1, - anon_sym_LBRACK, - STATE(1366), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3503), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [52502] = 7, + [53052] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3507), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [52529] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3511), 1, - anon_sym___attribute__, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1364), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3509), 7, + ACTIONS(3469), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52552] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(3497), 1, - anon_sym_COLON, - ACTIONS(3516), 1, - anon_sym_RPAREN, - STATE(1629), 1, - sym_gnu_asm_output_operand_list, - STATE(754), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [52579] = 5, + [53079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3473), 1, anon_sym___attribute__, - ACTIONS(3520), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, STATE(1364), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3518), 7, + ACTIONS(3471), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107585,555 +107993,489 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52602] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3455), 1, - anon_sym_LBRACK, - ACTIONS(3457), 1, - anon_sym_COLON, - STATE(1433), 1, - sym_parameter_list, - STATE(1563), 1, - sym_bitfield_clause, - STATE(1384), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3522), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [52633] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, - sym_identifier, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - anon_sym_STAR, - STATE(1448), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52662] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, - anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, - STATE(1450), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [52691] = 8, + [53102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2831), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2833), 1, anon_sym_STAR, - STATE(1425), 1, - sym__declarator, - STATE(1811), 1, + STATE(1447), 1, + sym__field_declarator, + STATE(1833), 1, sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52720] = 8, + STATE(1425), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53131] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1427), 1, + STATE(1438), 1, sym__declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52749] = 7, + [53160] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1433), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1384), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3524), 5, + ACTIONS(3478), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [52776] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_STAR, - STATE(1367), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52805] = 8, + anon_sym_LBRACE, + anon_sym_EQ, + [53187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1859), 1, anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2672), 1, + ACTIONS(2841), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1452), 1, + STATE(1445), 1, sym__declarator, - STATE(1811), 1, + STATE(1886), 1, sym_ms_based_modifier, - STATE(1438), 5, + STATE(1422), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52834] = 8, + [53216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2498), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - anon_sym_STAR, - STATE(1449), 1, - sym__declarator, - STATE(1811), 1, - sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52863] = 7, + ACTIONS(3480), 1, + anon_sym_RPAREN, + ACTIONS(3482), 1, + anon_sym_COLON, + STATE(1568), 1, + sym_gnu_asm_output_operand_list, + STATE(753), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53243] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(1433), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1384), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3526), 5, + ACTIONS(3484), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [52890] = 7, + [53270] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(1362), 1, + ACTIONS(3430), 1, + anon_sym_COLON, + STATE(1444), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1546), 1, + sym_bitfield_clause, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3528), 5, + ACTIONS(3486), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [52917] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_STAR, - STATE(1453), 1, - sym__field_declarator, - STATE(1835), 1, - sym_ms_based_modifier, - STATE(1445), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52946] = 8, + anon_sym___attribute__, + [53301] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym___based, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(2668), 1, - anon_sym_STAR, + ACTIONS(3428), 1, + anon_sym_LBRACK, STATE(1444), 1, - sym__type_declarator, - STATE(1785), 1, - sym_ms_based_modifier, - STATE(1460), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [52975] = 7, + sym_parameter_list, + STATE(1388), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3488), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [53328] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3530), 5, + ACTIONS(3490), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [53002] = 7, + [53355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(3482), 1, + anon_sym_COLON, + ACTIONS(3492), 1, + anon_sym_RPAREN, + STATE(1635), 1, + sym_gnu_asm_output_operand_list, + STATE(753), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53382] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1427), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53411] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3532), 5, + ACTIONS(3494), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [53029] = 3, + [53438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(3409), 1, + anon_sym___attribute__, + ACTIONS(3498), 1, anon_sym_LBRACK, - ACTIONS(3534), 9, + STATE(1357), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3496), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + [53461] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1424), 1, + sym__declarator, + STATE(1886), 1, + sym_ms_based_modifier, + STATE(1422), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53490] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_LBRACK, + STATE(1527), 1, + sym_gnu_asm_output_operand, + STATE(1766), 1, + sym_string_literal, + ACTIONS(3500), 2, + anon_sym_RPAREN, anon_sym_COLON, - [53047] = 10, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53514] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3474), 1, - anon_sym_SEMI, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - STATE(1362), 1, + ACTIONS(3459), 1, + anon_sym_SEMI, + STATE(1377), 1, sym_parameter_list, - STATE(1588), 1, + STATE(1610), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53079] = 5, + [53546] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3540), 1, - anon_sym_LBRACK, - STATE(1352), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3538), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3424), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, - anon_sym_LBRACK, - ACTIONS(3542), 9, + ACTIONS(3438), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, anon_sym_EQ, - anon_sym_COLON, - [53119] = 10, + ACTIONS(3455), 1, + anon_sym_SEMI, + STATE(1377), 1, + sym_parameter_list, + STATE(1552), 1, + aux_sym_declaration_repeat1, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53578] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3489), 1, + ACTIONS(3457), 1, anon_sym_SEMI, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1613), 1, + STATE(1622), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53151] = 5, + [53610] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3548), 1, + ACTIONS(3506), 1, anon_sym_LBRACK, - STATE(1352), 2, + STATE(1343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3546), 6, + ACTIONS(3504), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [53173] = 6, + [53632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3510), 1, anon_sym_LBRACK, - STATE(1513), 1, - sym_gnu_asm_input_operand, - STATE(1957), 1, - sym_string_literal, - ACTIONS(3550), 2, + ACTIONS(3508), 9, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53197] = 10, + [53650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3514), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, - anon_sym_EQ, - ACTIONS(3493), 1, + ACTIONS(3512), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1362), 1, - sym_parameter_list, - STATE(1571), 1, - aux_sym_declaration_repeat1, - STATE(1387), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [53229] = 10, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [53668] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3480), 1, + ACTIONS(3453), 1, anon_sym_SEMI, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1625), 1, + STATE(1584), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53261] = 10, + [53700] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3440), 1, + anon_sym_SEMI, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_SEMI, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1562), 1, + STATE(1542), 1, aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53293] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3556), 1, - anon_sym_LBRACK, - STATE(1521), 1, - sym_gnu_asm_output_operand, - STATE(1939), 1, - sym_string_literal, - ACTIONS(3554), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53317] = 10, + [53732] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3476), 1, + ACTIONS(3518), 1, anon_sym_LBRACK, - ACTIONS(3478), 1, - anon_sym_EQ, - ACTIONS(3558), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_parameter_list, - STATE(1586), 1, - aux_sym_declaration_repeat1, - STATE(1387), 2, + STATE(1343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53349] = 3, + ACTIONS(3516), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [53754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3522), 1, anon_sym_LBRACK, - ACTIONS(3560), 9, + ACTIONS(3520), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108143,601 +108485,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [53367] = 7, + [53772] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(1473), 1, + ACTIONS(3444), 1, + anon_sym_EQ, + ACTIONS(3524), 1, + anon_sym_SEMI, + STATE(1377), 1, sym_parameter_list, - STATE(1441), 2, + STATE(1534), 1, + aux_sym_declaration_repeat1, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3564), 3, - anon_sym_COMMA, + [53804] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + anon_sym_LBRACK, + STATE(1523), 1, + sym_gnu_asm_input_operand, + STATE(1718), 1, + sym_string_literal, + ACTIONS(3526), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [53392] = 9, + anon_sym_COLON, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53828] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3570), 1, + ACTIONS(3532), 1, anon_sym_SEMI, - STATE(1473), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + STATE(1461), 1, sym_parameter_list, - STATE(1591), 1, + STATE(1577), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53421] = 9, + [53857] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(3572), 1, - anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1584), 1, - aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53450] = 9, + ACTIONS(3536), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [53882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3538), 1, + sym_identifier, + ACTIONS(3542), 1, + sym_system_lib_string, + STATE(1823), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53903] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3574), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3544), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1580), 1, + STATE(1603), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53479] = 9, + [53932] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3576), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3546), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1545), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53508] = 9, + [53961] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3578), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3548), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1614), 1, + STATE(1588), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53537] = 5, + [53990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3550), 1, sym_identifier, - ACTIONS(3584), 1, + ACTIONS(3552), 1, sym_system_lib_string, - STATE(1824), 2, + STATE(1864), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3582), 5, + ACTIONS(3540), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53558] = 7, + [54011] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(1473), 1, + ACTIONS(3554), 1, + anon_sym_SEMI, + STATE(1461), 1, sym_parameter_list, - STATE(1441), 2, + STATE(1607), 1, + aux_sym_type_definition_repeat2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [53583] = 9, + [54040] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3588), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3556), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1552), 1, + STATE(1593), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53612] = 9, + [54069] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3590), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3558), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1540), 1, + STATE(1579), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53641] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3594), 1, - sym_system_lib_string, - STATE(1893), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3582), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53662] = 8, + [54098] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, - anon_sym_LBRACK, - ACTIONS(3478), 1, - anon_sym_EQ, - STATE(1362), 1, - sym_parameter_list, - ACTIONS(3596), 2, + ACTIONS(3530), 1, anon_sym_COMMA, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3560), 1, anon_sym_SEMI, - STATE(1387), 2, + STATE(1461), 1, + sym_parameter_list, + STATE(1617), 1, + aux_sym_type_definition_repeat2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53689] = 9, + [54127] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3598), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3562), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1542), 1, + STATE(1616), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53718] = 7, + [54156] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(1473), 1, + ACTIONS(3564), 1, + anon_sym_SEMI, + STATE(1461), 1, sym_parameter_list, - STATE(1441), 2, + STATE(1572), 1, + aux_sym_type_definition_repeat2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [53743] = 9, + [54185] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3602), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3566), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1564), 1, + STATE(1594), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53772] = 9, + [54214] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, anon_sym_LBRACK, ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(3604), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1568), 1, + STATE(1570), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53801] = 9, + [54243] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3606), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3570), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1604), 1, + STATE(1563), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53830] = 9, + [54272] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(3608), 1, - anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1603), 1, - aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53859] = 9, + ACTIONS(3572), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [54297] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3610), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3574), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1602), 1, + STATE(1549), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53888] = 9, + [54326] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3612), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1593), 1, + STATE(1560), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53917] = 7, + [54355] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3614), 3, + ACTIONS(3578), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [53942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 1, - sym_identifier, - ACTIONS(3618), 1, - sym_system_lib_string, - STATE(1848), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3582), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53963] = 5, + [54380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3580), 1, sym_identifier, - ACTIONS(3622), 1, + ACTIONS(3582), 1, sym_system_lib_string, - STATE(1770), 2, + STATE(1777), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3582), 5, + ACTIONS(3540), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53984] = 9, + [54401] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3624), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3584), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1541), 1, + STATE(1595), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54013] = 9, + [54430] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3626), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3586), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1565), 1, + STATE(1596), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54042] = 5, + [54459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3590), 1, sym_system_lib_string, - STATE(1955), 2, + STATE(1961), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3582), 5, + ACTIONS(3540), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54063] = 9, + [54480] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3632), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3592), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1539), 1, + STATE(1538), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54092] = 9, + [54509] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3596), 1, + sym_system_lib_string, + STATE(1852), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54530] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3634), 1, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3598), 1, anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1547), 1, + STATE(1604), 1, aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54121] = 9, + [54559] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(3636), 1, - anon_sym_SEMI, - STATE(1473), 1, + STATE(1461), 1, sym_parameter_list, - STATE(1637), 1, - aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54150] = 9, + ACTIONS(3600), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [54584] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3568), 1, + ACTIONS(3444), 1, + anon_sym_EQ, + STATE(1377), 1, + sym_parameter_list, + ACTIONS(3602), 2, anon_sym_COMMA, - ACTIONS(3638), 1, anon_sym_SEMI, - STATE(1473), 1, - sym_parameter_list, - STATE(1607), 1, - aux_sym_type_definition_repeat2, - STATE(1441), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54179] = 8, + [54611] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(486), 1, - sym_compound_statement, - STATE(1362), 1, + ACTIONS(3604), 1, + anon_sym_SEMI, + STATE(1461), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1559), 1, + aux_sym_type_definition_repeat2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54205] = 4, + [54640] = 3, ACTIONS(3), 1, sym_comment, - STATE(1510), 1, + ACTIONS(3608), 1, + anon_sym_LBRACK, + ACTIONS(3606), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54656] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1507), 1, sym_string_literal, - ACTIONS(3640), 2, + ACTIONS(3610), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(91), 5, @@ -108746,30 +109123,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54223] = 8, + [54674] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(123), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_LBRACK, + STATE(140), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LBRACK, + ACTIONS(3612), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_LBRACK, + ACTIONS(3616), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54732] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(593), 1, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(458), 1, + STATE(467), 1, sym_compound_statement, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54249] = 3, + [54758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3622), 1, anon_sym_LBRACK, - ACTIONS(3642), 7, + ACTIONS(3620), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108777,14 +109198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54265] = 5, + [54774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(1577), 1, + ACTIONS(3624), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + anon_sym_LBRACK, + STATE(1623), 1, sym_gnu_asm_input_operand, - STATE(1957), 1, + STATE(1718), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -108792,43 +109226,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54285] = 8, + [54810] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - STATE(496), 1, - sym_compound_statement, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + ACTIONS(3628), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54311] = 3, + [54834] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, - anon_sym_LBRACK, - ACTIONS(3646), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54327] = 3, + ACTIONS(39), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_LBRACK, + STATE(514), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3650), 7, + ACTIONS(3630), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108836,12 +109274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54343] = 3, + [54876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3636), 1, anon_sym_LBRACK, - ACTIONS(3654), 7, + ACTIONS(3634), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108849,12 +109287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54359] = 3, + [54892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - ACTIONS(3658), 7, + ACTIONS(3638), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108862,12 +109300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54375] = 3, + [54908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3662), 7, + ACTIONS(3642), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108875,25 +109313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3668), 1, - anon_sym_LBRACK, - ACTIONS(3666), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54407] = 3, + [54924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3648), 1, anon_sym_LBRACK, - ACTIONS(3670), 7, + ACTIONS(3646), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108901,27 +109326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54423] = 3, + [54940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, - anon_sym_LBRACK, - ACTIONS(3674), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(652), 1, anon_sym_LBRACE, - anon_sym_EQ, - [54439] = 5, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_LBRACK, + STATE(464), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, + ACTIONS(3502), 1, anon_sym_LBRACK, - STATE(1567), 1, + STATE(1564), 1, sym_gnu_asm_output_operand, - STATE(1939), 1, + STATE(1766), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -108929,44 +109359,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54459] = 7, + [54986] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(1362), 1, + STATE(1461), 1, sym_parameter_list, - ACTIONS(3678), 2, + ACTIONS(3650), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1387), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACK, - STATE(1352), 2, + anon_sym_SEMI, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3680), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [54503] = 3, + [55010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3654), 1, anon_sym_LBRACK, - ACTIONS(3684), 7, + ACTIONS(3652), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108974,42 +109389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54519] = 3, + [55026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3658), 1, anon_sym_LBRACK, - ACTIONS(3688), 7, + ACTIONS(3656), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54535] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [55042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3566), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - STATE(1473), 1, - sym_parameter_list, - ACTIONS(3692), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1441), 2, + STATE(1343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54559] = 3, + ACTIONS(3660), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + [55062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(3666), 1, anon_sym_LBRACK, - ACTIONS(3694), 7, + ACTIONS(3664), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109017,25 +109430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54575] = 3, + [55078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_LBRACK, - ACTIONS(3698), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(189), 1, anon_sym_LBRACE, - anon_sym_EQ, - [54591] = 3, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_LBRACK, + STATE(212), 1, + sym_compound_statement, + STATE(1377), 1, + sym_parameter_list, + STATE(1383), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(3670), 1, anon_sym_LBRACK, - ACTIONS(3702), 7, + ACTIONS(3668), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109043,64 +109461,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54607] = 8, + [55120] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(152), 1, - sym_compound_statement, - STATE(1362), 1, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1444), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54633] = 8, + [55143] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(215), 1, - sym_compound_statement, - STATE(1362), 1, + ACTIONS(3674), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1443), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54659] = 7, + [55166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3566), 1, - anon_sym_LBRACK, - ACTIONS(3706), 1, - anon_sym_RPAREN, - STATE(1473), 1, - sym_parameter_list, - STATE(1441), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54682] = 4, + STATE(1369), 1, + sym_string_literal, + STATE(1550), 1, + sym_concatenated_string, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55183] = 4, ACTIONS(3), 1, sym_comment, - STATE(1365), 1, + STATE(1374), 1, sym_string_literal, - STATE(1624), 1, + STATE(1569), 1, sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -109108,175 +109519,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54699] = 7, + [55200] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3476), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3676), 1, anon_sym_RPAREN, - STATE(1362), 1, + STATE(1377), 1, sym_parameter_list, - STATE(1387), 2, + STATE(1383), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54722] = 7, + [55223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3455), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - ACTIONS(3710), 1, - anon_sym_RPAREN, - STATE(1433), 1, + STATE(1483), 1, sym_parameter_list, - STATE(1384), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54745] = 4, + ACTIONS(3678), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [55241] = 3, ACTIONS(3), 1, sym_comment, - STATE(1359), 1, + STATE(1779), 1, sym_string_literal, - STATE(1627), 1, - sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54762] = 5, + [55255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3684), 1, + anon_sym_LBRACK, + ACTIONS(3682), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LPAREN2, + STATE(1455), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3688), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55285] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - STATE(1500), 1, + STATE(1483), 1, sym_parameter_list, - ACTIONS(3712), 3, + ACTIONS(3691), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [54780] = 3, + [55303] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3680), 1, anon_sym_LBRACK, - ACTIONS(3716), 5, + STATE(1483), 1, + sym_parameter_list, + ACTIONS(3693), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [54794] = 3, + anon_sym_COLON, + [55321] = 5, ACTIONS(3), 1, sym_comment, - STATE(1902), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54808] = 5, + ACTIONS(3695), 1, + anon_sym_LBRACK, + ACTIONS(3698), 1, + anon_sym_EQ, + ACTIONS(3700), 1, + anon_sym_DOT, + STATE(1458), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [55339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - STATE(1500), 1, + STATE(1483), 1, sym_parameter_list, - ACTIONS(3720), 3, + ACTIONS(3703), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [54826] = 5, + [55357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(3707), 1, anon_sym_LBRACK, - STATE(1500), 1, - sym_parameter_list, - ACTIONS(3722), 3, + ACTIONS(3705), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [54844] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3711), 1, anon_sym_LBRACK, - ACTIONS(3724), 5, + ACTIONS(3709), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [54858] = 3, + [55385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3715), 1, anon_sym_LBRACK, - ACTIONS(3728), 5, + ACTIONS(3713), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [54872] = 5, + [55399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(3719), 1, anon_sym_LBRACK, - ACTIONS(3732), 1, - anon_sym_EQ, - ACTIONS(3734), 1, - anon_sym_DOT, - STATE(1466), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [54890] = 4, + ACTIONS(3717), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3723), 1, + anon_sym_LBRACK, + ACTIONS(3721), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1463), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3738), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [54906] = 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - STATE(1463), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3743), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [54922] = 3, + ACTIONS(3680), 1, + anon_sym_LBRACK, + STATE(1483), 1, + sym_parameter_list, + ACTIONS(3725), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [55445] = 3, ACTIONS(3), 1, sym_comment, - STATE(1916), 1, + STATE(1795), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -109284,3610 +109713,3574 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_EQ, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1466), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [54954] = 3, + [55459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 1, + ACTIONS(3729), 1, anon_sym_LBRACK, - ACTIONS(3753), 5, + ACTIONS(3727), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [54968] = 3, + [55473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_LBRACK, - ACTIONS(3757), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3731), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [54982] = 5, + STATE(1455), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3733), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - STATE(1500), 1, + STATE(1483), 1, sym_parameter_list, - ACTIONS(3761), 3, + ACTIONS(3735), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55000] = 5, + [55507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - STATE(1500), 1, - sym_parameter_list, - ACTIONS(3763), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55018] = 5, + ACTIONS(3737), 1, + anon_sym_EQ, + ACTIONS(3739), 1, + anon_sym_DOT, + STATE(1458), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [55525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3741), 1, anon_sym_LPAREN2, - ACTIONS(3714), 1, - anon_sym_LBRACK, - STATE(1500), 1, - sym_parameter_list, - ACTIONS(3765), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55036] = 3, + STATE(1468), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3733), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, + STATE(1606), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 1, anon_sym_LBRACK, - ACTIONS(3767), 5, + ACTIONS(3743), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55050] = 3, + [55569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3771), 5, + ACTIONS(3747), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55064] = 4, + [55583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(3751), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1464), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3743), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55080] = 3, + anon_sym_LBRACK, + anon_sym_COLON, + [55594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 1, + ACTIONS(3753), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(3777), 5, + anon_sym_COLON, + [55605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [55094] = 3, + anon_sym_LBRACK, + anon_sym_COLON, + [55616] = 2, ACTIONS(3), 1, sym_comment, - STATE(1589), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55108] = 6, + ACTIONS(3757), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [55627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3781), 1, + ACTIONS(3759), 1, anon_sym_SEMI, - STATE(1503), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1965), 1, + STATE(1791), 1, sym_attribute_specifier, - [55127] = 2, + [55646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 5, + ACTIONS(3761), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55138] = 5, + [55657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3763), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3714), 1, anon_sym_LBRACK, - STATE(1500), 1, - sym_parameter_list, - ACTIONS(3678), 2, + anon_sym_COLON, + [55668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 5, anon_sym_COMMA, anon_sym_RPAREN, - [55155] = 6, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [55679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, - anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3767), 5, anon_sym_COMMA, - ACTIONS(3785), 1, - anon_sym_SEMI, - STATE(1508), 1, - aux_sym_field_declaration_repeat1, - STATE(1762), 1, - sym_attribute_specifier, - [55174] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [55690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3787), 1, + ACTIONS(3769), 1, anon_sym_SEMI, - STATE(1495), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1751), 1, + STATE(1870), 1, sym_attribute_specifier, - [55193] = 2, + [55709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3789), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55204] = 6, + ACTIONS(3773), 1, + anon_sym_COLON_COLON, + STATE(1680), 1, + sym_argument_list, + ACTIONS(3771), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [55726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3791), 1, + ACTIONS(3775), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1855), 1, + STATE(1749), 1, sym_attribute_specifier, - [55223] = 6, + [55745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3777), 1, anon_sym_SEMI, - STATE(1485), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1857), 1, + STATE(1796), 1, sym_attribute_specifier, - [55242] = 6, + [55764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3795), 1, + ACTIONS(3779), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1845), 1, + STATE(1734), 1, sym_attribute_specifier, - [55261] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2699), 1, - anon_sym_LBRACE, - ACTIONS(3797), 1, - sym_identifier, - STATE(1113), 1, - sym_field_declaration_list, - STATE(1605), 1, - sym_ms_declspec_modifier, - [55280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2699), 1, - anon_sym_LBRACE, - ACTIONS(3799), 1, - sym_identifier, - STATE(1103), 1, - sym_field_declaration_list, - STATE(1596), 1, - sym_ms_declspec_modifier, - [55299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55310] = 2, + [55783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 5, + ACTIONS(3409), 1, + anon_sym___attribute__, + ACTIONS(3422), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55321] = 2, + ACTIONS(3781), 1, + anon_sym_SEMI, + STATE(1479), 1, + aux_sym_field_declaration_repeat1, + STATE(1799), 1, + sym_attribute_specifier, + [55802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 5, + ACTIONS(3783), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55332] = 2, + [55813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 5, + ACTIONS(3409), 1, + anon_sym___attribute__, + ACTIONS(3422), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55343] = 2, + ACTIONS(3785), 1, + anon_sym_SEMI, + STATE(1486), 1, + aux_sym_field_declaration_repeat1, + STATE(1736), 1, + sym_attribute_specifier, + [55832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55354] = 6, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + sym_identifier, + STATE(988), 1, + sym_field_declaration_list, + STATE(1601), 1, + sym_ms_declspec_modifier, + [55851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3811), 1, + ACTIONS(3789), 1, anon_sym_SEMI, - STATE(1501), 1, + STATE(1484), 1, aux_sym_field_declaration_repeat1, - STATE(1968), 1, + STATE(1901), 1, sym_attribute_specifier, - [55373] = 6, + [55870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3813), 1, + ACTIONS(3791), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1495), 1, aux_sym_field_declaration_repeat1, - STATE(1967), 1, + STATE(1930), 1, sym_attribute_specifier, - [55392] = 6, + [55889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3815), 1, + ACTIONS(3793), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1738), 1, + STATE(1949), 1, sym_attribute_specifier, - [55411] = 6, + [55908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3817), 1, + ACTIONS(3795), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1950), 1, + STATE(1935), 1, sym_attribute_specifier, - [55430] = 2, + [55927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 5, + ACTIONS(3797), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55441] = 2, + [55938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3424), 1, anon_sym_LPAREN2, + ACTIONS(3680), 1, anon_sym_LBRACK, - anon_sym_COLON, - [55452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - ACTIONS(3825), 1, - anon_sym_COLON_COLON, - STATE(1666), 1, - sym_argument_list, - ACTIONS(3823), 2, + STATE(1483), 1, + sym_parameter_list, + ACTIONS(3628), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [55469] = 2, + anon_sym_RPAREN, + [55955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 5, + ACTIONS(3799), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55480] = 6, + [55966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3409), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3422), 1, anon_sym_COMMA, - ACTIONS(3829), 1, + ACTIONS(3801), 1, anon_sym_SEMI, - STATE(1508), 1, + STATE(1518), 1, aux_sym_field_declaration_repeat1, - STATE(1940), 1, + STATE(1897), 1, sym_attribute_specifier, - [55499] = 2, + [55985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 5, + ACTIONS(3803), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55510] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - anon_sym___attribute__, - ACTIONS(3449), 1, - anon_sym_COMMA, - ACTIONS(3833), 1, - anon_sym_SEMI, - STATE(1508), 1, - aux_sym_field_declaration_repeat1, - STATE(1993), 1, - sym_attribute_specifier, - [55529] = 2, + [55996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3835), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55540] = 5, - ACTIONS(3229), 1, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_identifier, + STATE(990), 1, + sym_field_declaration_list, + STATE(1600), 1, + sym_ms_declspec_modifier, + [56015] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3807), 1, anon_sym_LF, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3841), 1, + ACTIONS(3811), 1, sym_preproc_arg, - STATE(1693), 1, + STATE(1706), 1, sym_preproc_params, - [55556] = 5, - ACTIONS(3229), 1, + [56031] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(3813), 1, anon_sym_LF, - ACTIONS(3845), 1, + ACTIONS(3815), 1, sym_preproc_arg, - STATE(1686), 1, + STATE(1712), 1, sym_preproc_params, - [55572] = 5, - ACTIONS(3229), 1, + [56047] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3847), 1, + ACTIONS(3817), 1, anon_sym_LF, - ACTIONS(3849), 1, + ACTIONS(3819), 1, sym_preproc_arg, - STATE(1683), 1, + STATE(1700), 1, sym_preproc_params, - [55588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_COMMA, - STATE(1508), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3854), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [55602] = 5, - ACTIONS(3229), 1, + [56063] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3821), 1, anon_sym_DQUOTE, - ACTIONS(3858), 1, + ACTIONS(3823), 1, aux_sym_string_literal_token1, - ACTIONS(3860), 1, + ACTIONS(3825), 1, sym_escape_sequence, - STATE(1531), 1, + STATE(1524), 1, aux_sym_string_literal_repeat1, - [55618] = 4, + [56079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 1, + ACTIONS(3827), 1, anon_sym_COMMA, - STATE(1529), 1, + STATE(1513), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3864), 2, + ACTIONS(3829), 2, anon_sym_RPAREN, anon_sym_COLON, - [55632] = 4, - ACTIONS(3), 1, + [56093] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3866), 1, - anon_sym_COMMA, - STATE(1511), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3869), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [55646] = 4, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3831), 1, + anon_sym_LF, + ACTIONS(3833), 1, + sym_preproc_arg, + STATE(1697), 1, + sym_preproc_params, + [56109] = 5, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + aux_sym_string_literal_token1, + ACTIONS(3839), 1, + sym_escape_sequence, + STATE(1530), 1, + aux_sym_string_literal_repeat1, + [56125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3841), 1, anon_sym_COMMA, - STATE(1530), 1, + STATE(1517), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3873), 2, + ACTIONS(3843), 2, anon_sym_RPAREN, anon_sym_COLON, - [55660] = 4, + [56139] = 5, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3837), 1, + aux_sym_string_literal_token1, + ACTIONS(3839), 1, + sym_escape_sequence, + ACTIONS(3845), 1, + anon_sym_DQUOTE, + STATE(1530), 1, + aux_sym_string_literal_repeat1, + [56155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3847), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [56165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, anon_sym_COMMA, - STATE(1532), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3877), 2, + STATE(1521), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3849), 2, anon_sym_RPAREN, anon_sym_COLON, - [55674] = 5, + [56179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3714), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - ACTIONS(3879), 1, + ACTIONS(3851), 1, anon_sym_RPAREN, - STATE(1500), 1, + STATE(1483), 1, sym_parameter_list, - [55690] = 2, + [56195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 4, + ACTIONS(2264), 1, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55700] = 5, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3858), 1, - aux_sym_string_literal_token1, - ACTIONS(3860), 1, - sym_escape_sequence, - ACTIONS(3883), 1, - anon_sym_DQUOTE, - STATE(1531), 1, - aux_sym_string_literal_repeat1, - [55716] = 5, - ACTIONS(3229), 1, + STATE(1692), 1, + sym_argument_list, + ACTIONS(3853), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [56209] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_DQUOTE, - ACTIONS(3887), 1, - aux_sym_string_literal_token1, - ACTIONS(3889), 1, - sym_escape_sequence, - STATE(1519), 1, - aux_sym_string_literal_repeat1, - [55732] = 5, - ACTIONS(3229), 1, + ACTIONS(3855), 1, + anon_sym_COMMA, + STATE(1529), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3857), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [56223] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 1, - anon_sym_LPAREN, - ACTIONS(3891), 1, - anon_sym_LF, - ACTIONS(3893), 1, - sym_preproc_arg, - STATE(1661), 1, - sym_preproc_params, - [55748] = 5, - ACTIONS(3229), 1, + ACTIONS(3859), 1, + anon_sym_COMMA, + STATE(1517), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3862), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [56237] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 1, - aux_sym_string_literal_token1, - ACTIONS(3860), 1, - sym_escape_sequence, - ACTIONS(3895), 1, - anon_sym_DQUOTE, - STATE(1531), 1, - aux_sym_string_literal_repeat1, - [55764] = 5, - ACTIONS(3229), 1, + ACTIONS(3864), 1, + anon_sym_COMMA, + STATE(1518), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(3867), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [56251] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3869), 1, anon_sym_LF, - ACTIONS(3899), 1, + ACTIONS(3871), 1, sym_preproc_arg, - STATE(1702), 1, + STATE(1691), 1, sym_preproc_params, - [55780] = 4, + [56267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3873), 1, + sym_identifier, + ACTIONS(3875), 1, anon_sym_COMMA, - STATE(1512), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3901), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [55794] = 4, + ACTIONS(3877), 1, + anon_sym_RBRACE, + STATE(1556), 1, + sym_enumerator, + [56283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, + ACTIONS(3879), 1, anon_sym_COMMA, - STATE(1522), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3906), 2, + STATE(1521), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3882), 2, anon_sym_RPAREN, anon_sym_COLON, - [55808] = 5, - ACTIONS(3229), 1, + [56297] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3908), 1, + ACTIONS(3884), 1, anon_sym_LF, - ACTIONS(3910), 1, + ACTIONS(3886), 1, sym_preproc_arg, - STATE(1688), 1, + STATE(1656), 1, sym_preproc_params, - [55824] = 4, + [56313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - STATE(1675), 1, - sym_argument_list, - ACTIONS(3912), 2, + ACTIONS(3855), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [55838] = 5, - ACTIONS(3229), 1, + STATE(1516), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3888), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [56327] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3914), 1, - anon_sym_DQUOTE, - ACTIONS(3916), 1, + ACTIONS(3837), 1, aux_sym_string_literal_token1, - ACTIONS(3918), 1, + ACTIONS(3839), 1, sym_escape_sequence, - STATE(1509), 1, - aux_sym_string_literal_repeat1, - [55854] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3920), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_RBRACE, - STATE(1618), 1, - sym_enumerator, - [55870] = 5, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3926), 1, + ACTIONS(3890), 1, anon_sym_DQUOTE, - ACTIONS(3928), 1, - aux_sym_string_literal_token1, - ACTIONS(3930), 1, - sym_escape_sequence, - STATE(1516), 1, + STATE(1530), 1, aux_sym_string_literal_repeat1, - [55886] = 5, - ACTIONS(3229), 1, + [56343] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3932), 1, + ACTIONS(3892), 1, anon_sym_LF, - ACTIONS(3934), 1, + ACTIONS(3894), 1, sym_preproc_arg, - STATE(1680), 1, + STATE(1668), 1, sym_preproc_params, - [55902] = 4, - ACTIONS(3), 1, + [56359] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3862), 1, - anon_sym_COMMA, - STATE(1511), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3936), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [55916] = 4, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LF, + ACTIONS(3898), 1, + sym_preproc_arg, + STATE(1684), 1, + sym_preproc_params, + [56375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3938), 1, + ACTIONS(3841), 1, anon_sym_COMMA, - STATE(1530), 1, + STATE(1510), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3941), 2, + ACTIONS(3900), 2, anon_sym_RPAREN, anon_sym_COLON, - [55930] = 5, - ACTIONS(3229), 1, + [56389] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3902), 1, anon_sym_DQUOTE, - ACTIONS(3945), 1, + ACTIONS(3904), 1, aux_sym_string_literal_token1, - ACTIONS(3948), 1, + ACTIONS(3906), 1, sym_escape_sequence, - STATE(1531), 1, + STATE(1509), 1, aux_sym_string_literal_repeat1, - [55946] = 4, + [56405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3908), 1, anon_sym_COMMA, - STATE(1522), 1, + STATE(1529), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3951), 2, + ACTIONS(3911), 2, anon_sym_RPAREN, anon_sym_COLON, - [55960] = 5, - ACTIONS(3229), 1, + [56419] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, - anon_sym_LF, - ACTIONS(3955), 1, - sym_preproc_arg, - STATE(1714), 1, - sym_preproc_params, - [55976] = 5, - ACTIONS(3229), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3915), 1, + aux_sym_string_literal_token1, + ACTIONS(3918), 1, + sym_escape_sequence, + STATE(1530), 1, + aux_sym_string_literal_repeat1, + [56435] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3957), 1, + ACTIONS(3921), 1, anon_sym_LF, - ACTIONS(3959), 1, + ACTIONS(3923), 1, sym_preproc_arg, - STATE(1708), 1, + STATE(1659), 1, sym_preproc_params, - [55992] = 4, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, + [56451] = 5, + ACTIONS(3223), 1, sym_comment, - ACTIONS(3961), 1, - anon_sym_LF, - STATE(1296), 1, - sym_preproc_argument_list, - [56005] = 4, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3925), 1, + anon_sym_DQUOTE, + ACTIONS(3927), 1, + aux_sym_string_literal_token1, + ACTIONS(3929), 1, + sym_escape_sequence, + STATE(1511), 1, + aux_sym_string_literal_repeat1, + [56467] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3963), 1, - anon_sym_LF, - STATE(1296), 1, - sym_preproc_argument_list, - [56018] = 4, + ACTIONS(3931), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_RBRACK_RBRACK, + STATE(1566), 1, + aux_sym_attribute_declaration_repeat1, + [56480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, - anon_sym_RPAREN, - ACTIONS(3965), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - STATE(1537), 1, - aux_sym_argument_list_repeat1, - [56031] = 4, + ACTIONS(3935), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + ACTIONS(2849), 1, anon_sym_RPAREN, - ACTIONS(3968), 1, + STATE(1580), 1, + aux_sym_argument_list_repeat1, + [56519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, anon_sym_COMMA, - STATE(1538), 1, - aux_sym_preproc_argument_list_repeat1, - [56044] = 4, + ACTIONS(3941), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_preproc_params_repeat1, + [56532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3971), 1, + ACTIONS(3943), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56057] = 4, + [56545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(1887), 1, + anon_sym_RBRACE, + ACTIONS(3945), 1, anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56070] = 4, + STATE(1551), 1, + aux_sym_initializer_list_repeat1, + [56558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(2847), 1, anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(2876), 1, + anon_sym_RPAREN, + STATE(1553), 1, + aux_sym_argument_list_repeat1, + [56571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3947), 1, anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56083] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3977), 1, + ACTIONS(3949), 1, anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56096] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3951), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [56606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(2904), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, anon_sym_COMMA, - ACTIONS(3979), 1, + STATE(1544), 1, + aux_sym_argument_list_repeat1, + [56619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 1, anon_sym_RPAREN, - STATE(1538), 1, - aux_sym_preproc_argument_list_repeat1, - [56109] = 4, + ACTIONS(3958), 1, + anon_sym_COLON, + STATE(1763), 1, + sym_gnu_asm_goto_list, + [56632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(3960), 3, anon_sym_COMMA, - ACTIONS(3984), 1, - anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_preproc_params_repeat1, - [56122] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [56641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3986), 1, + ACTIONS(3962), 1, anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56135] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, + ACTIONS(3964), 1, anon_sym_COMMA, - ACTIONS(3991), 1, + ACTIONS(3966), 1, anon_sym_RPAREN, - STATE(1546), 1, + STATE(1597), 1, aux_sym_parameter_list_repeat1, - [56148] = 4, + [56667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(3993), 1, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56161] = 4, + [56680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3480), 1, + anon_sym_RPAREN, + ACTIONS(3482), 1, + anon_sym_COLON, + STATE(1568), 1, + sym_gnu_asm_output_operand_list, + [56693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(3970), 1, anon_sym_COMMA, - ACTIONS(3995), 1, + STATE(1551), 1, + aux_sym_initializer_list_repeat1, + [56706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [56719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, anon_sym_RPAREN, - STATE(1537), 1, + STATE(1544), 1, aux_sym_argument_list_repeat1, - [56174] = 2, + [56732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [56183] = 4, + ACTIONS(3193), 1, + anon_sym_COMMA, + ACTIONS(3977), 1, + anon_sym_RPAREN, + STATE(1576), 1, + aux_sym_preproc_argument_list_repeat1, + [56745] = 4, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LF, + STATE(1295), 1, + sym_preproc_argument_list, + [56758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(3981), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_RBRACE, - ACTIONS(3999), 1, + STATE(1567), 1, + aux_sym_enumerator_list_repeat1, + [56771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_EQ, + ACTIONS(3985), 2, anon_sym_COMMA, - STATE(1561), 1, - aux_sym_initializer_list_repeat1, - [56196] = 4, + anon_sym_RBRACE, + [56782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(4001), 1, - sym_identifier, - STATE(1167), 1, - sym_enumerator_list, - [56209] = 4, + ACTIONS(3931), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, + anon_sym_RBRACK_RBRACK, + STATE(1566), 1, + aux_sym_attribute_declaration_repeat1, + [56795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4003), 1, + ACTIONS(3991), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56222] = 4, + [56808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(2721), 1, - anon_sym_RPAREN, - STATE(1548), 1, - aux_sym_argument_list_repeat1, - [56235] = 4, + ACTIONS(3993), 1, + anon_sym_SEMI, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [56821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - anon_sym_RPAREN, - ACTIONS(4007), 1, - anon_sym_COLON, - STATE(1556), 1, - sym_gnu_asm_input_operand_list, - [56248] = 4, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [56834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(4000), 1, anon_sym_RPAREN, - ACTIONS(4011), 1, - anon_sym_COLON, - STATE(1922), 1, - sym_gnu_asm_goto_list, - [56261] = 4, + STATE(1562), 1, + aux_sym_parameter_list_repeat1, + [56847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(3530), 1, + anon_sym_COMMA, + ACTIONS(4002), 1, + anon_sym_SEMI, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [56860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4004), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4015), 1, anon_sym_COLON, - STATE(1572), 1, - sym_gnu_asm_clobber_list, - [56274] = 4, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_LF, - STATE(1296), 1, - sym_preproc_argument_list, - [56287] = 2, + [56869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [56296] = 4, + ACTIONS(3931), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + anon_sym_RBRACK_RBRACK, + STATE(1533), 1, + aux_sym_attribute_declaration_repeat1, + [56882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(4008), 1, anon_sym_COMMA, - ACTIONS(4021), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56309] = 4, + ACTIONS(4011), 1, + anon_sym_RBRACK_RBRACK, + STATE(1566), 1, + aux_sym_attribute_declaration_repeat1, + [56895] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4013), 1, + anon_sym_COMMA, ACTIONS(4015), 1, - anon_sym_COLON, - ACTIONS(4023), 1, - anon_sym_RPAREN, - STATE(1555), 1, - sym_gnu_asm_clobber_list, - [56322] = 4, + anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_enumerator_list_repeat1, + [56908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, - anon_sym_RBRACE, - ACTIONS(4025), 1, - anon_sym_COMMA, - STATE(1561), 1, - aux_sym_initializer_list_repeat1, - [56335] = 4, + ACTIONS(4017), 1, + anon_sym_RPAREN, + ACTIONS(4019), 1, + anon_sym_COLON, + STATE(1634), 1, + sym_gnu_asm_input_operand_list, + [56921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(4028), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56348] = 2, + ACTIONS(3482), 1, + anon_sym_COLON, + ACTIONS(3492), 1, + anon_sym_RPAREN, + STATE(1635), 1, + sym_gnu_asm_output_operand_list, + [56934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 3, + ACTIONS(3530), 1, anon_sym_COMMA, + ACTIONS(4021), 1, anon_sym_SEMI, - anon_sym___attribute__, - [56357] = 4, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [56947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4032), 1, + ACTIONS(4023), 1, anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56370] = 4, + STATE(1547), 1, + aux_sym_declaration_repeat1, + [56960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4034), 1, + ACTIONS(4025), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56383] = 4, + [56973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4036), 1, + ACTIONS(4027), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1585), 1, aux_sym_declaration_repeat1, - [56396] = 2, + [56986] = 4, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LF, + STATE(1295), 1, + sym_preproc_argument_list, + [56999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 3, + ACTIONS(4031), 1, anon_sym_COMMA, + ACTIONS(4034), 1, anon_sym_RPAREN, - anon_sym_COLON, - [56405] = 4, + STATE(1575), 1, + aux_sym_preproc_params_repeat1, + [57012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3337), 1, + anon_sym_RPAREN, + ACTIONS(4036), 1, + anon_sym_COMMA, + STATE(1576), 1, + aux_sym_preproc_argument_list_repeat1, + [57025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4040), 1, + ACTIONS(4039), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56418] = 4, + [57038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(4041), 1, anon_sym_COMMA, - ACTIONS(4042), 1, + ACTIONS(4044), 1, anon_sym_SEMI, - STATE(1559), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [56431] = 4, + [57051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(4046), 1, - anon_sym_RBRACK_RBRACK, + anon_sym_SEMI, STATE(1615), 1, - aux_sym_attribute_declaration_repeat1, - [56444] = 4, + aux_sym_type_definition_repeat2, + [57064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(2847), 1, anon_sym_COMMA, ACTIONS(4048), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56457] = 4, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_argument_list_repeat1, + [57077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, - anon_sym_COLON, + ACTIONS(3193), 1, + anon_sym_COMMA, ACTIONS(4050), 1, anon_sym_RPAREN, - STATE(1907), 1, - sym_gnu_asm_goto_list, - [56470] = 4, + STATE(1576), 1, + aux_sym_preproc_argument_list_repeat1, + [57090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_COMMA, ACTIONS(4052), 1, anon_sym_RPAREN, - STATE(1581), 1, - aux_sym_generic_expression_repeat1, - [56483] = 2, + ACTIONS(4054), 1, + anon_sym_COLON, + STATE(1636), 1, + sym_gnu_asm_clobber_list, + [57103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4054), 3, - anon_sym_COMMA, + ACTIONS(4058), 1, anon_sym_RPAREN, - anon_sym_COLON, - [56492] = 4, + ACTIONS(4056), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [57114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_SEMI, - STATE(1587), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [56505] = 4, + [57127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4058), 1, - anon_sym_RBRACK_RBRACK, - STATE(1630), 1, - aux_sym_attribute_declaration_repeat1, - [56518] = 2, + ACTIONS(4062), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 3, + ACTIONS(3939), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56527] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4064), 1, anon_sym_RPAREN, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [56538] = 4, + STATE(1575), 1, + aux_sym_preproc_params_repeat1, + [57153] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2870), 1, + anon_sym_LBRACE, ACTIONS(4066), 1, - anon_sym_COMMA, - ACTIONS(4068), 1, - anon_sym_RPAREN, - STATE(1590), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [56551] = 4, + sym_identifier, + STATE(1214), 1, + sym_enumerator_list, + [57166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4070), 1, + ACTIONS(4068), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56564] = 4, + [57179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4070), 1, anon_sym_COMMA, - ACTIONS(4075), 1, + ACTIONS(4072), 1, anon_sym_RPAREN, - STATE(1581), 1, - aux_sym_generic_expression_repeat1, - [56577] = 2, + STATE(1592), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 3, + ACTIONS(4074), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56586] = 4, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, + [57201] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, - anon_sym_LF, - STATE(1296), 1, - sym_preproc_argument_list, - [56599] = 4, + ACTIONS(4076), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(4078), 1, anon_sym_COMMA, ACTIONS(4081), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56612] = 4, + anon_sym_RPAREN, + STATE(1592), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(4083), 1, anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56625] = 4, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(4085), 1, anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56638] = 4, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(4087), 1, anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56651] = 4, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(4089), 1, anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [56664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [56686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(4095), 1, - anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56699] = 4, + [57275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, + ACTIONS(3964), 1, anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4091), 1, anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [56712] = 4, + STATE(1562), 1, + aux_sym_parameter_list_repeat1, + [57288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4102), 1, + ACTIONS(4093), 1, anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56734] = 4, + STATE(1535), 1, + aux_sym_declaration_repeat1, + [57301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_RBRACK_RBRACK, - STATE(1630), 1, - aux_sym_attribute_declaration_repeat1, - [56747] = 4, + ACTIONS(4095), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [57310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(4108), 1, + ACTIONS(4097), 1, sym_identifier, - STATE(1115), 1, + STATE(991), 1, sym_field_declaration_list, - [56760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4110), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_RBRACE, - STATE(1598), 1, - aux_sym_enumerator_list_repeat1, - [56782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(4117), 1, - anon_sym_SEMI, - STATE(1566), 1, - aux_sym_declaration_repeat1, - [56795] = 4, + [57323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(4099), 1, sym_identifier, - ACTIONS(4119), 1, - anon_sym_RBRACE, - STATE(1676), 1, - sym_enumerator, - [56808] = 4, + STATE(956), 1, + sym_field_declaration_list, + [57336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3931), 1, anon_sym_COMMA, - ACTIONS(4121), 1, + ACTIONS(4101), 1, anon_sym_RBRACK_RBRACK, - STATE(1576), 1, + STATE(1558), 1, aux_sym_attribute_declaration_repeat1, - [56821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56834] = 4, + [57349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4125), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56847] = 4, + [57362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4127), 1, + ACTIONS(4105), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2699), 1, - anon_sym_LBRACE, - ACTIONS(4129), 1, - sym_identifier, - STATE(1097), 1, - sym_field_declaration_list, - [56873] = 4, + [57375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4131), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - STATE(1585), 1, + STATE(1541), 1, aux_sym_declaration_repeat1, - [56886] = 4, + [57388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(4109), 3, anon_sym_COMMA, - ACTIONS(4133), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56899] = 4, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4135), 1, - anon_sym_LF, - STATE(1296), 1, - sym_preproc_argument_list, - [56912] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [57397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4140), 1, + ACTIONS(4111), 1, anon_sym_SEMI, - STATE(1609), 1, + STATE(1615), 1, aux_sym_type_definition_repeat2, - [56925] = 4, + [57410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - ACTIONS(2729), 1, + ACTIONS(2853), 1, anon_sym_RBRACE, - STATE(1550), 1, + STATE(1539), 1, aux_sym_initializer_list_repeat1, - [56938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(4142), 1, - sym_identifier, - STATE(1324), 1, - sym_enumerator_list, - [56951] = 4, + [57423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + ACTIONS(4113), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [56964] = 4, + [57436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4146), 1, + ACTIONS(4115), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [56977] = 4, + [57449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(4117), 3, anon_sym_COMMA, - ACTIONS(4148), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [56990] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [57458] = 4, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_LF, + STATE(1295), 1, + sym_preproc_argument_list, + [57471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3931), 1, anon_sym_COMMA, - ACTIONS(4150), 1, + ACTIONS(4121), 1, anon_sym_RBRACK_RBRACK, - STATE(1630), 1, + STATE(1566), 1, aux_sym_attribute_declaration_repeat1, - [57003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4154), 1, - anon_sym_EQ, - ACTIONS(4152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57014] = 4, + [57484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4123), 1, anon_sym_COMMA, - ACTIONS(4158), 1, + ACTIONS(4126), 1, anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_preproc_params_repeat1, - [57027] = 4, + STATE(1614), 1, + aux_sym_generic_expression_repeat1, + [57497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(4128), 1, anon_sym_COMMA, - ACTIONS(4162), 1, - anon_sym_RBRACE, - STATE(1632), 1, - aux_sym_enumerator_list_repeat1, - [57040] = 4, + ACTIONS(4131), 1, + anon_sym_SEMI, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_RBRACK_RBRACK, - STATE(1595), 1, - aux_sym_attribute_declaration_repeat1, - [57053] = 4, + ACTIONS(4133), 1, + anon_sym_SEMI, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3530), 1, anon_sym_COMMA, - ACTIONS(4166), 1, + ACTIONS(4135), 1, anon_sym_SEMI, - STATE(1612), 1, - aux_sym_declaration_repeat1, - [57066] = 4, + STATE(1615), 1, + aux_sym_type_definition_repeat2, + [57536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(4168), 1, - anon_sym_RPAREN, - STATE(1538), 1, - aux_sym_preproc_argument_list_repeat1, - [57079] = 4, + ACTIONS(3873), 1, + sym_identifier, + ACTIONS(4015), 1, + anon_sym_RBRACE, + STATE(1648), 1, + sym_enumerator, + [57549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(4070), 1, anon_sym_COMMA, - ACTIONS(4170), 1, + ACTIONS(4137), 1, anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_argument_list_repeat1, - [57092] = 4, + STATE(1589), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4139), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1624), 1, aux_sym_declaration_repeat1, - [57105] = 4, + [57575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_COLON, - ACTIONS(3516), 1, - anon_sym_RPAREN, - STATE(1629), 1, - sym_gnu_asm_output_operand_list, - [57118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, + ACTIONS(3931), 1, anon_sym_COMMA, - ACTIONS(4177), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [57131] = 4, + ACTIONS(4141), 1, + anon_sym_RBRACK_RBRACK, + STATE(1613), 1, + aux_sym_attribute_declaration_repeat1, + [57588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4179), 1, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [57144] = 4, + [57601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(4145), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3497), 1, anon_sym_COLON, - STATE(1554), 1, - sym_gnu_asm_output_operand_list, - [57157] = 4, + [57610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(4181), 1, + ACTIONS(4147), 1, anon_sym_SEMI, - STATE(1626), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [57170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_COLON, - ACTIONS(4183), 1, - anon_sym_RPAREN, - STATE(1560), 1, - sym_gnu_asm_input_operand_list, - [57183] = 4, + [57623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, - anon_sym_COMMA, - ACTIONS(4188), 1, - anon_sym_RBRACK_RBRACK, - STATE(1630), 1, - aux_sym_attribute_declaration_repeat1, - [57196] = 4, + ACTIONS(3873), 1, + sym_identifier, + ACTIONS(4149), 1, + anon_sym_RBRACE, + STATE(1648), 1, + sym_enumerator, + [57636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(4151), 3, anon_sym_COMMA, - ACTIONS(4192), 1, anon_sym_RPAREN, - STATE(1546), 1, - aux_sym_parameter_list_repeat1, - [57209] = 4, + anon_sym_COLON, + [57645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 1, + ACTIONS(4153), 1, anon_sym_COMMA, - ACTIONS(4196), 1, + ACTIONS(4156), 1, anon_sym_RBRACE, - STATE(1598), 1, + STATE(1627), 1, aux_sym_enumerator_list_repeat1, - [57222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3920), 1, - sym_identifier, - ACTIONS(4196), 1, - anon_sym_RBRACE, - STATE(1676), 1, - sym_enumerator, - [57235] = 4, + [57658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(1622), 1, - aux_sym_argument_list_repeat1, - [57248] = 4, + ACTIONS(4158), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_declaration_repeat1, + [57671] = 4, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_LF, + STATE(1295), 1, + sym_preproc_argument_list, + [57684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4162), 1, anon_sym_RPAREN, - STATE(1617), 1, - aux_sym_preproc_params_repeat1, - [57261] = 4, + STATE(1614), 1, + aux_sym_generic_expression_repeat1, + [57697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(4200), 1, + ACTIONS(4164), 1, sym_identifier, - STATE(1324), 1, + STATE(1197), 1, sym_enumerator_list, - [57274] = 4, + [57710] = 4, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LF, + STATE(1295), 1, + sym_preproc_argument_list, + [57723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, - anon_sym_COMMA, - ACTIONS(4202), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_type_definition_repeat2, - [57287] = 4, + ACTIONS(2870), 1, + anon_sym_LBRACE, + ACTIONS(4168), 1, + sym_identifier, + STATE(1214), 1, + sym_enumerator_list, + [57736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, - anon_sym_COMMA, - ACTIONS(4204), 1, + ACTIONS(4054), 1, + anon_sym_COLON, + ACTIONS(4170), 1, anon_sym_RPAREN, - STATE(1631), 1, - aux_sym_parameter_list_repeat1, - [57300] = 3, + STATE(1545), 1, + sym_gnu_asm_clobber_list, + [57749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, - anon_sym_LPAREN2, - STATE(1929), 1, - sym_parenthesized_expression, - [57310] = 2, + ACTIONS(4019), 1, + anon_sym_COLON, + ACTIONS(4172), 1, + anon_sym_RPAREN, + STATE(1582), 1, + sym_gnu_asm_input_operand_list, + [57762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 2, + ACTIONS(3958), 1, + anon_sym_COLON, + ACTIONS(4174), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [57318] = 3, + STATE(1789), 1, + sym_gnu_asm_goto_list, + [57775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(338), 1, + STATE(330), 1, sym_parenthesized_expression, - [57328] = 2, + [57785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 2, + ACTIONS(4178), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57336] = 2, - ACTIONS(3229), 1, + [57793] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 2, - anon_sym_LF, - sym_preproc_arg, - [57344] = 2, + ACTIONS(4176), 1, + anon_sym_LPAREN2, + STATE(270), 1, + sym_parenthesized_expression, + [57803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [57352] = 3, - ACTIONS(3229), 1, + ACTIONS(4176), 1, + anon_sym_LPAREN2, + STATE(328), 1, + sym_parenthesized_expression, + [57813] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4180), 2, anon_sym_LF, - ACTIONS(4216), 1, sym_preproc_arg, - [57362] = 3, - ACTIONS(3229), 1, + [57821] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4182), 1, + sym_identifier, + STATE(1621), 1, + sym_attribute, + [57831] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4184), 1, anon_sym_LF, - ACTIONS(4220), 1, + ACTIONS(4186), 1, sym_preproc_arg, - [57372] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4222), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57380] = 3, + [57841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(370), 1, + STATE(269), 1, sym_parenthesized_expression, - [57390] = 3, + [57851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(1669), 1, + STATE(1652), 1, sym_parenthesized_expression, - [57400] = 3, + [57861] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4190), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [57869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_LPAREN2, - STATE(369), 1, - sym_parenthesized_expression, - [57410] = 3, + ACTIONS(2904), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 1, + ACTIONS(4156), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, sym_identifier, - STATE(1619), 1, - sym_attribute, - [57420] = 3, + ACTIONS(4194), 1, + anon_sym_RPAREN, + [57895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(593), 1, + ACTIONS(652), 1, anon_sym_LBRACE, STATE(259), 1, sym_compound_statement, - [57430] = 3, + [57905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(4196), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [57913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + anon_sym_LBRACE, + STATE(104), 1, + sym_compound_statement, + [57923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [57931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57939] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4198), 2, + anon_sym_LF, + sym_preproc_arg, + [57947] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_LF, + ACTIONS(4202), 1, + sym_preproc_arg, + [57957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [57965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(1804), 1, - sym_argument_list, - [57440] = 3, + STATE(1888), 1, + sym_parenthesized_expression, + [57975] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4206), 1, + sym_preproc_arg, + [57985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4208), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LPAREN2, + [57995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4000), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(339), 1, + STATE(1933), 1, sym_parenthesized_expression, - [57450] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4226), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57458] = 2, + [58013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [57466] = 2, + ACTIONS(189), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_compound_statement, + [58023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 2, + ACTIONS(4011), 2, anon_sym_COMMA, - anon_sym_SEMI, - [57474] = 3, + anon_sym_RBRACK_RBRACK, + [58031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_LPAREN2, - STATE(303), 1, - sym_parenthesized_expression, - [57484] = 2, + ACTIONS(460), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_compound_statement, + [58041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [57492] = 2, - ACTIONS(3229), 1, + ACTIONS(2861), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [58049] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(4212), 1, anon_sym_LF, + ACTIONS(4214), 1, sym_preproc_arg, - [57500] = 3, - ACTIONS(3229), 1, + [58059] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4232), 1, + ACTIONS(4216), 1, anon_sym_LF, - ACTIONS(4234), 1, + ACTIONS(4218), 1, sym_preproc_arg, - [57510] = 3, - ACTIONS(3), 1, + [58069] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_LPAREN2, - STATE(401), 1, - sym_parenthesized_expression, - [57520] = 3, + ACTIONS(4220), 1, + anon_sym_LF, + ACTIONS(4222), 1, + sym_preproc_arg, + [58079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(1692), 1, + STATE(326), 1, sym_parenthesized_expression, - [57530] = 3, + [58089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(367), 1, + STATE(1663), 1, sym_parenthesized_expression, - [57540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4224), 1, - sym_identifier, - STATE(1644), 1, - sym_attribute, - [57550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [57558] = 3, + [58099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(1836), 1, + STATE(325), 1, sym_parenthesized_expression, - [57568] = 3, + [58109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_compound_statement, - [57578] = 3, - ACTIONS(3), 1, + ACTIONS(4224), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58117] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(104), 1, - sym_compound_statement, - [57588] = 3, + ACTIONS(4226), 2, + anon_sym_LF, + sym_preproc_arg, + [58125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_LPAREN2, - STATE(222), 1, - sym_parenthesized_expression, - [57598] = 3, + ACTIONS(3021), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(309), 1, + STATE(1810), 1, sym_parenthesized_expression, - [57608] = 3, + [58143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(314), 1, + STATE(1831), 1, sym_parenthesized_expression, - [57618] = 3, + [58153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(1878), 1, + STATE(1650), 1, sym_parenthesized_expression, - [57628] = 3, + [58163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4182), 1, sym_identifier, - ACTIONS(4240), 1, - anon_sym_LPAREN2, - [57638] = 2, + STATE(1664), 1, + sym_attribute, + [58173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, + ACTIONS(4228), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [57646] = 2, + [58181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 2, + ACTIONS(3013), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57654] = 3, + [58189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, + ACTIONS(4188), 1, + anon_sym_LPAREN2, + STATE(1744), 1, + sym_parenthesized_expression, + [58199] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4230), 1, + anon_sym_LF, + ACTIONS(4232), 1, + sym_preproc_arg, + [58209] = 3, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4234), 1, + anon_sym_LF, + ACTIONS(4236), 1, + sym_preproc_arg, + [58219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + STATE(1876), 1, + sym_argument_list, + [58229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(334), 1, + STATE(255), 1, sym_compound_statement, - [57664] = 3, + [58239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - STATE(1668), 1, - sym_parenthesized_expression, - [57674] = 3, + STATE(1905), 1, + sym_argument_list, + [58249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, anon_sym_LPAREN2, - STATE(1732), 1, - sym_parenthesized_expression, - [57684] = 3, - ACTIONS(3229), 1, + [58259] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4242), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3873), 1, + sym_identifier, + STATE(1648), 1, + sym_enumerator, + [58277] = 3, + ACTIONS(3223), 1, sym_comment, ACTIONS(4244), 1, anon_sym_LF, ACTIONS(4246), 1, sym_preproc_arg, - [57694] = 2, + [58287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4248), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [57702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_LPAREN2, - STATE(1652), 1, - sym_parenthesized_expression, - [57712] = 3, - ACTIONS(3229), 1, + anon_sym_RBRACK_RBRACK, + [58295] = 3, + ACTIONS(3223), 1, sym_comment, ACTIONS(4250), 1, anon_sym_LF, ACTIONS(4252), 1, sym_preproc_arg, - [57722] = 3, + [58305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(1759), 1, + STATE(440), 1, sym_parenthesized_expression, - [57732] = 3, - ACTIONS(3229), 1, + [58315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 1, + anon_sym_LPAREN2, + STATE(384), 1, + sym_parenthesized_expression, + [58325] = 3, + ACTIONS(3223), 1, sym_comment, ACTIONS(4254), 1, anon_sym_LF, ACTIONS(4256), 1, sym_preproc_arg, - [57742] = 3, - ACTIONS(3229), 1, + [58335] = 3, + ACTIONS(3223), 1, sym_comment, ACTIONS(4258), 1, anon_sym_LF, ACTIONS(4260), 1, sym_preproc_arg, - [57752] = 3, + [58345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4188), 1, anon_sym_LPAREN2, - STATE(368), 1, + STATE(1686), 1, sym_parenthesized_expression, - [57762] = 3, - ACTIONS(3229), 1, + [58355] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4262), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58363] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LF, ACTIONS(4264), 1, + anon_sym_LF, + ACTIONS(4266), 1, sym_preproc_arg, - [57772] = 3, + [58373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, - sym_identifier, - ACTIONS(4268), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - [57782] = 3, - ACTIONS(3), 1, + STATE(332), 1, + sym_parenthesized_expression, + [58383] = 3, + ACTIONS(3223), 1, sym_comment, + ACTIONS(4268), 1, + anon_sym_LF, ACTIONS(4270), 1, - sym_identifier, - ACTIONS(4272), 1, - anon_sym_RPAREN, - [57792] = 3, + sym_preproc_arg, + [58393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 1, + anon_sym_LPAREN2, + STATE(387), 1, + sym_parenthesized_expression, + [58403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 1, + ACTIONS(4182), 1, sym_identifier, - STATE(1570), 1, + STATE(1602), 1, sym_attribute, - [57802] = 3, + [58413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - STATE(170), 1, - sym_compound_statement, - [57812] = 3, - ACTIONS(3229), 1, + ACTIONS(4188), 1, + anon_sym_LPAREN2, + STATE(1665), 1, + sym_parenthesized_expression, + [58423] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LF, - ACTIONS(4276), 1, + ACTIONS(4274), 1, sym_preproc_arg, - [57822] = 2, + [58433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57846] = 3, - ACTIONS(3229), 1, + ACTIONS(4176), 1, + anon_sym_LPAREN2, + STATE(331), 1, + sym_parenthesized_expression, + [58443] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4278), 1, + ACTIONS(4276), 1, anon_sym_LF, - ACTIONS(4280), 1, + ACTIONS(4278), 1, sym_preproc_arg, - [57856] = 3, - ACTIONS(3229), 1, + [58453] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4282), 1, + ACTIONS(4280), 1, anon_sym_LF, - ACTIONS(4284), 1, + ACTIONS(4282), 1, sym_preproc_arg, - [57866] = 3, + [58463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 1, + ACTIONS(4182), 1, sym_identifier, - STATE(1676), 1, - sym_enumerator, - [57876] = 3, + STATE(1565), 1, + sym_attribute, + [58473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, + ACTIONS(4176), 1, anon_sym_LPAREN2, - STATE(1787), 1, - sym_argument_list, - [57886] = 3, - ACTIONS(3229), 1, + STATE(438), 1, + sym_parenthesized_expression, + [58483] = 3, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(4284), 1, anon_sym_LF, - ACTIONS(4288), 1, + ACTIONS(4286), 1, sym_preproc_arg, - [57896] = 3, - ACTIONS(3229), 1, + [58493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + aux_sym_preproc_if_token2, + [58500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_RPAREN, + [58507] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4290), 1, - anon_sym_LF, - ACTIONS(4292), 1, - sym_preproc_arg, - [57906] = 2, - ACTIONS(3229), 1, + sym_identifier, + [58514] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57914] = 3, - ACTIONS(3229), 1, + ACTIONS(4292), 1, + sym_identifier, + [58521] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4294), 1, anon_sym_LF, - ACTIONS(4298), 1, - sym_preproc_arg, - [57924] = 2, + [58528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57932] = 2, - ACTIONS(3229), 1, + ACTIONS(4296), 1, + anon_sym_LPAREN2, + [58535] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4300), 2, + ACTIONS(4298), 1, anon_sym_LF, - sym_preproc_arg, - [57940] = 3, - ACTIONS(3229), 1, + [58542] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4300), 1, + anon_sym_LF, + [58549] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4302), 1, anon_sym_LF, + [58556] = 2, + ACTIONS(3223), 1, + sym_comment, ACTIONS(4304), 1, - sym_preproc_arg, - [57950] = 3, - ACTIONS(3229), 1, + anon_sym_LF, + [58563] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4306), 1, anon_sym_LF, - ACTIONS(4308), 1, - sym_preproc_arg, - [57960] = 3, + [58570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 1, + ACTIONS(4308), 1, sym_identifier, - STATE(1601), 1, - sym_attribute, - [57970] = 3, - ACTIONS(3229), 1, + [58577] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4310), 1, anon_sym_LF, + [58584] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(4312), 1, - sym_preproc_arg, - [57980] = 3, + sym_identifier, + [58591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_LPAREN2, - STATE(302), 1, - sym_parenthesized_expression, - [57990] = 3, + ACTIONS(4314), 1, + sym_identifier, + [58598] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4316), 1, + anon_sym_LF, + [58605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, - anon_sym_LPAREN2, - STATE(1677), 1, - sym_parenthesized_expression, - [58000] = 2, + ACTIONS(4318), 1, + anon_sym_RBRACK, + [58612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 2, - anon_sym_COMMA, + ACTIONS(3025), 1, anon_sym_RPAREN, - [58008] = 3, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4314), 1, - anon_sym_LF, - ACTIONS(4316), 1, - sym_preproc_arg, - [58018] = 2, - ACTIONS(3229), 1, + [58619] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_LF, - [58025] = 2, + ACTIONS(3007), 1, + anon_sym_RPAREN, + [58626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, - [58032] = 2, - ACTIONS(3229), 1, + [58633] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4320), 1, anon_sym_LF, - [58039] = 2, + [58640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_RPAREN, - [58046] = 2, - ACTIONS(3229), 1, - sym_comment, ACTIONS(4322), 1, - anon_sym_LF, - [58053] = 2, - ACTIONS(3229), 1, + anon_sym_SEMI, + [58647] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4324), 1, - anon_sym_LF, - [58060] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [58654] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4326), 1, - anon_sym_LF, - [58067] = 2, + anon_sym_SEMI, + [58661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4328), 1, - anon_sym_SEMI, - [58074] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [58668] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4330), 1, anon_sym_LF, - [58081] = 2, - ACTIONS(3229), 1, + [58675] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4332), 1, - anon_sym_LF, - [58088] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [58682] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4334), 1, anon_sym_LF, - [58095] = 2, - ACTIONS(3), 1, + [58689] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4336), 1, - sym_identifier, - [58102] = 2, + anon_sym_LF, + [58696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4338), 1, - sym_identifier, - [58109] = 2, + anon_sym_COLON, + [58703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4340), 1, - sym_identifier, - [58116] = 2, + aux_sym_preproc_if_token2, + [58710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4342), 1, - aux_sym_preproc_if_token2, - [58123] = 2, + anon_sym_SEMI, + [58717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4344), 1, - sym_identifier, - [58130] = 2, + aux_sym_preproc_if_token2, + [58724] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4346), 1, aux_sym_preproc_if_token2, - [58137] = 2, + [58731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4348), 1, - anon_sym_SEMI, - [58144] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [58738] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4350), 1, - anon_sym_SEMI, - [58151] = 2, + anon_sym_LF, + [58745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4352), 1, - aux_sym_preproc_if_token2, - [58158] = 2, + anon_sym_SEMI, + [58752] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4354), 1, - aux_sym_preproc_if_token2, - [58165] = 2, + sym_identifier, + [58759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(2995), 1, anon_sym_RPAREN, - [58172] = 2, - ACTIONS(3229), 1, + [58766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + aux_sym_preproc_if_token2, + [58773] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4358), 1, - anon_sym_LF, - [58179] = 2, + aux_sym_preproc_if_token2, + [58780] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4360), 1, - anon_sym_SEMI, - [58186] = 2, - ACTIONS(3229), 1, + sym_identifier, + [58787] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4362), 1, - anon_sym_LF, - [58193] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [58794] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4364), 1, anon_sym_LF, - [58200] = 2, - ACTIONS(3229), 1, + [58801] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - anon_sym_LF, - [58207] = 2, + anon_sym_RPAREN, + [58808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4368), 1, anon_sym_RPAREN, - [58214] = 2, + [58815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4370), 1, - sym_primitive_type, - [58221] = 2, + anon_sym_SEMI, + [58822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + anon_sym_SEMI, + [58829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4372), 1, - aux_sym_preproc_if_token2, - [58228] = 2, + anon_sym_RBRACK, + [58836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2963), 1, + anon_sym_SEMI, + [58843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4374), 1, - aux_sym_preproc_if_token2, - [58235] = 2, - ACTIONS(3229), 1, + anon_sym_RPAREN, + [58850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2933), 1, + anon_sym_SEMI, + [58857] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4376), 1, anon_sym_LF, - [58242] = 2, + [58864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4378), 1, - aux_sym_preproc_if_token2, - [58249] = 2, - ACTIONS(3229), 1, + anon_sym_LPAREN2, + [58871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_SEMI, + [58878] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4380), 1, - anon_sym_LF, - [58256] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [58885] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4382), 1, - anon_sym_LF, - [58263] = 2, + sym_identifier, + [58892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4384), 1, anon_sym_COLON, - [58270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_SEMI, - [58277] = 2, + [58899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, - sym_identifier, - [58284] = 2, + ACTIONS(2937), 1, + anon_sym_RPAREN, + [58906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, - anon_sym_SQUOTE, - [58291] = 2, + ACTIONS(4386), 1, + anon_sym_RPAREN, + [58913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(2949), 1, anon_sym_SEMI, - [58298] = 2, + [58920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_SEMI, - [58305] = 2, + ACTIONS(2951), 1, + anon_sym_RPAREN, + [58927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, - sym_identifier, - [58312] = 2, + ACTIONS(2953), 1, + anon_sym_RPAREN, + [58934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - aux_sym_preproc_if_token2, - [58319] = 2, - ACTIONS(3), 1, + ACTIONS(2957), 1, + anon_sym_RPAREN, + [58941] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4398), 1, - sym_identifier, - [58326] = 2, + ACTIONS(4166), 1, + anon_sym_LF, + [58948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(3029), 1, anon_sym_SEMI, - [58333] = 2, + [58955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, - anon_sym_RPAREN, - [58340] = 2, + ACTIONS(4388), 1, + anon_sym_LPAREN2, + [58962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, - anon_sym_SEMI, - [58347] = 2, + ACTIONS(3027), 1, + anon_sym_RPAREN, + [58969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4390), 1, anon_sym_SEMI, - [58354] = 2, + [58976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(2880), 1, anon_sym_RPAREN, - [58361] = 2, + [58983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + aux_sym_preproc_if_token2, + [58990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(3035), 1, anon_sym_RPAREN, - [58368] = 2, + [58997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(4394), 1, anon_sym_SEMI, - [58375] = 2, + [59004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 1, + ACTIONS(4396), 1, anon_sym_SEMI, - [58382] = 2, + [59011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(3037), 1, anon_sym_RPAREN, - [58389] = 2, + [59018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - aux_sym_preproc_if_token2, - [58396] = 2, + ACTIONS(4398), 1, + anon_sym_COLON, + [59025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_SEMI, - [58403] = 2, - ACTIONS(3229), 1, + ACTIONS(4400), 1, + anon_sym_RPAREN, + [59032] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 1, - anon_sym_LF, - [58410] = 2, + ACTIONS(4402), 1, + aux_sym_preproc_if_token2, + [59039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, + ACTIONS(4404), 1, anon_sym_SEMI, - [58417] = 2, + [59046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - anon_sym_SEMI, - [58424] = 2, + ACTIONS(4406), 1, + aux_sym_preproc_if_token2, + [59053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 1, - anon_sym_RPAREN, - [58431] = 2, + ACTIONS(4408), 1, + anon_sym_COLON, + [59060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_RPAREN, - [58438] = 2, + ACTIONS(4410), 1, + sym_identifier, + [59067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_COLON, - [58445] = 2, + ACTIONS(4412), 1, + anon_sym_LPAREN2, + [59074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_RPAREN, - [58452] = 2, + ACTIONS(4414), 1, + anon_sym_SEMI, + [59081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4416), 1, - aux_sym_preproc_if_token2, - [58459] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4418), 1, - anon_sym_LF, - [58466] = 2, + sym_identifier, + [59088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, - anon_sym_RPAREN, - [58473] = 2, + ACTIONS(2853), 1, + anon_sym_RBRACE, + [59095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - [58480] = 2, + [59102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4420), 1, - sym_identifier, - [58487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_RPAREN, - [58494] = 2, + aux_sym_preproc_if_token2, + [59109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4422), 1, aux_sym_preproc_if_token2, - [58501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2858), 1, - anon_sym_RPAREN, - [58508] = 2, + [59116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4424), 1, - anon_sym_STAR, - [58515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_RPAREN, - [58522] = 2, + anon_sym_SEMI, + [59123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4426), 1, - anon_sym_RPAREN, - [58529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, sym_identifier, - [58536] = 2, + [59130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_RPAREN, - [58543] = 2, + ACTIONS(4428), 1, + aux_sym_preproc_if_token2, + [59137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4430), 1, - aux_sym_preproc_if_token2, - [58550] = 2, + sym_identifier, + [59144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4432), 1, - anon_sym_COLON, - [58557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 1, - anon_sym_SEMI, - [58564] = 2, + sym_identifier, + [59151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4434), 1, anon_sym_RPAREN, - [58571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 1, - anon_sym_RBRACE, - [58578] = 2, + [59158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4436), 1, aux_sym_preproc_if_token2, - [58585] = 2, + [59165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4438), 1, - anon_sym_LPAREN2, - [58592] = 2, + aux_sym_preproc_if_token2, + [59172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4440), 1, - sym_primitive_type, - [58599] = 2, + anon_sym_SEMI, + [59179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4442), 1, - sym_identifier, - [58606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, anon_sym_SEMI, - [58613] = 2, + [59186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4444), 1, - anon_sym_RPAREN, - [58620] = 2, + aux_sym_preproc_if_token2, + [59193] = 2, + ACTIONS(2252), 1, + anon_sym_LF, + ACTIONS(3223), 1, + sym_comment, + [59200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4446), 1, - anon_sym_COMMA, - [58627] = 2, - ACTIONS(3229), 1, + sym_identifier, + [59207] = 2, + ACTIONS(2256), 1, + anon_sym_LF, + ACTIONS(3223), 1, + sym_comment, + [59214] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4448), 1, - anon_sym_LF, - [58634] = 2, + aux_sym_preproc_if_token2, + [59221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4450), 1, - anon_sym_RPAREN, - [58641] = 2, + anon_sym_SEMI, + [59228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4452), 1, - anon_sym_STAR, - [58648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 1, anon_sym_RPAREN, - [58655] = 2, + [59235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4454), 1, - anon_sym_SEMI, - [58662] = 2, + anon_sym_COLON, + [59242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4456), 1, - sym_identifier, - [58669] = 2, + anon_sym_SEMI, + [59249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4458), 1, - sym_identifier, - [58676] = 2, + anon_sym_SEMI, + [59256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4460), 1, - anon_sym_LPAREN2, - [58683] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [59263] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(2774), 1, - anon_sym_SEMI, - [58690] = 2, + ACTIONS(4029), 1, + anon_sym_LF, + [59270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4462), 1, - anon_sym_STAR, - [58697] = 2, - ACTIONS(3), 1, + sym_identifier, + [59277] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4464), 1, - anon_sym_SQUOTE, - [58704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 1, - anon_sym_SEMI, - [58711] = 2, + anon_sym_LF, + [59284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(4466), 1, anon_sym_SEMI, - [58718] = 2, + [59291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(2892), 1, anon_sym_SEMI, - [58725] = 2, + [59298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4468), 1, sym_identifier, - [58732] = 2, + [59305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_SEMI, - [58739] = 2, - ACTIONS(3229), 1, + [59312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 1, + anon_sym_SEMI, + [59319] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4470), 1, - anon_sym_LF, - [58746] = 2, + anon_sym_SEMI, + [59326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, + ACTIONS(2931), 1, anon_sym_SEMI, - [58753] = 2, - ACTIONS(3229), 1, + [59333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 1, + anon_sym_STAR, + [59340] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4474), 1, - anon_sym_LF, - [58760] = 2, + anon_sym_SEMI, + [59347] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2906), 1, + anon_sym_SEMI, + [59354] = 2, + ACTIONS(3223), 1, + sym_comment, ACTIONS(4476), 1, - anon_sym_RPAREN, - [58767] = 2, + anon_sym_LF, + [59361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4478), 1, aux_sym_preproc_if_token2, - [58774] = 2, + [59368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2884), 1, + anon_sym_RPAREN, + [59375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_RPAREN, + [59382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4480), 1, - aux_sym_preproc_if_token2, - [58781] = 2, - ACTIONS(3229), 1, + anon_sym_RPAREN, + [59389] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - anon_sym_LF, - [58788] = 2, + ACTIONS(2882), 1, + anon_sym_RPAREN, + [59396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2961), 1, + anon_sym_SEMI, + [59403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 1, + anon_sym_SEMI, + [59410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_SEMI, + [59417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 1, + anon_sym_SEMI, + [59424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4482), 1, anon_sym_SEMI, - [58795] = 2, + [59431] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2908), 1, + anon_sym_RPAREN, + [59438] = 2, + ACTIONS(3223), 1, + sym_comment, ACTIONS(4484), 1, - sym_identifier, - [58802] = 2, + anon_sym_LF, + [59445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_RPAREN, + [59452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4486), 1, - anon_sym_SEMI, - [58809] = 2, + anon_sym_SQUOTE, + [59459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + anon_sym_RPAREN, + [59466] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LF, + [59473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4488), 1, anon_sym_SEMI, - [58816] = 2, - ACTIONS(3), 1, + [59480] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4490), 1, - anon_sym_COLON, - [58823] = 2, + anon_sym_LF, + [59487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4492), 1, - anon_sym_COLON, - [58830] = 2, + anon_sym_SEMI, + [59494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4494), 1, sym_identifier, - [58837] = 2, + [59501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4496), 1, - anon_sym_SEMI, - [58844] = 2, - ACTIONS(3), 1, + sym_identifier, + [59508] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4498), 1, - anon_sym_SEMI, - [58851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_SEMI, - [58858] = 2, + anon_sym_LF, + [59515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4500), 1, - anon_sym_STAR, - [58865] = 2, + anon_sym_COLON, + [59522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4502), 1, - anon_sym_SEMI, - [58872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_SEMI, - [58879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_SEMI, - [58886] = 2, + aux_sym_preproc_if_token2, + [59529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4504), 1, - anon_sym_SEMI, - [58893] = 2, + sym_primitive_type, + [59536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3009), 1, anon_sym_RPAREN, - [58900] = 2, + [59543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4506), 1, - anon_sym_LPAREN2, - [58907] = 2, + sym_identifier, + [59550] = 2, + ACTIONS(3223), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_LF, + [59557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4508), 1, - anon_sym_LPAREN2, - [58914] = 2, + aux_sym_preproc_if_token2, + [59564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, - anon_sym_RPAREN, - [58921] = 2, + ACTIONS(2925), 1, + anon_sym_SEMI, + [59571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4510), 1, - anon_sym_while, - [58928] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [59578] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4512), 1, - anon_sym_SEMI, - [58935] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [59585] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4514), 1, - aux_sym_preproc_if_token2, - [58942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_SEMI, - [58949] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(3963), 1, anon_sym_LF, - [58956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2890), 1, - anon_sym_RPAREN, - [58963] = 2, + [59592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4516), 1, - ts_builtin_sym_end, - [58970] = 2, + anon_sym_SEMI, + [59599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, - anon_sym_RPAREN, - [58977] = 2, - ACTIONS(3229), 1, - sym_comment, ACTIONS(4518), 1, - anon_sym_LF, - [58984] = 2, + sym_identifier, + [59606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_RPAREN, - [58991] = 2, + ACTIONS(4520), 1, + aux_sym_preproc_if_token2, + [59613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_RPAREN, - [58998] = 2, + [59620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, - anon_sym_SEMI, - [59005] = 2, - ACTIONS(3229), 1, + ACTIONS(2965), 1, + anon_sym_RPAREN, + [59627] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4524), 1, - anon_sym_LF, - [59012] = 2, + aux_sym_preproc_if_token2, + [59634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4526), 1, - anon_sym_SEMI, - [59019] = 2, + anon_sym_STAR, + [59641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4528), 1, - sym_identifier, - [59026] = 2, + anon_sym_RPAREN, + [59648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, - sym_identifier, - [59033] = 2, + ACTIONS(2987), 1, + anon_sym_RPAREN, + [59655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4530), 1, aux_sym_preproc_if_token2, - [59040] = 2, + [59662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, - aux_sym_preproc_if_token2, - [59047] = 2, + ACTIONS(2983), 1, + anon_sym_RPAREN, + [59669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(2981), 1, + anon_sym_RPAREN, + [59676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 1, anon_sym_SEMI, - [59054] = 2, + [59683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 1, + anon_sym_COMMA, + [59690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4536), 1, - aux_sym_preproc_if_token2, - [59061] = 2, + anon_sym_RPAREN, + [59697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 1, + anon_sym_RPAREN, + [59704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4538), 1, - aux_sym_preproc_if_token2, - [59068] = 2, + anon_sym_STAR, + [59711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, - sym_identifier, - [59075] = 2, + ACTIONS(2975), 1, + anon_sym_RPAREN, + [59718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, - sym_identifier, - [59082] = 2, + ACTIONS(4540), 1, + anon_sym_SEMI, + [59725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_RBRACE, - [59089] = 2, + ACTIONS(2923), 1, + anon_sym_RPAREN, + [59732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, + ACTIONS(4542), 1, sym_identifier, - [59096] = 2, + [59739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, - aux_sym_preproc_if_token2, - [59103] = 2, - ACTIONS(2256), 1, - anon_sym_LF, - ACTIONS(3229), 1, - sym_comment, - [59110] = 2, + ACTIONS(4544), 1, + sym_primitive_type, + [59746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(2921), 1, anon_sym_RPAREN, - [59117] = 2, + [59753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(3023), 1, anon_sym_RPAREN, - [59124] = 2, + [59760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 1, + sym_identifier, + [59767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4548), 1, sym_identifier, - [59131] = 2, + [59774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4550), 1, - anon_sym_SEMI, - [59138] = 2, + aux_sym_preproc_if_token2, + [59781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4552), 1, - anon_sym_SQUOTE, - [59145] = 2, + anon_sym_SEMI, + [59788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3983), 1, + anon_sym_RBRACE, + [59795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4554), 1, - aux_sym_preproc_if_token2, - [59152] = 2, + sym_identifier, + [59802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4556), 1, - aux_sym_preproc_if_token2, - [59159] = 2, + anon_sym_RPAREN, + [59809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4558), 1, anon_sym_SEMI, - [59166] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_LF, - [59173] = 2, + [59816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_RPAREN, - [59180] = 2, + ACTIONS(4560), 1, + aux_sym_preproc_if_token2, + [59823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4562), 1, aux_sym_preproc_if_token2, - [59187] = 2, - ACTIONS(2252), 1, - anon_sym_LF, - ACTIONS(3229), 1, - sym_comment, - [59194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2733), 1, - anon_sym_RPAREN, - [59201] = 2, + [59830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4564), 1, - anon_sym_SEMI, - [59208] = 2, + sym_identifier, + [59837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4566), 1, - anon_sym_SEMI, - [59215] = 2, + anon_sym_RPAREN, + [59844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4568), 1, aux_sym_preproc_if_token2, - [59222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_RPAREN, - [59229] = 2, + [59851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4570), 1, - anon_sym_RPAREN, - [59236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 1, - anon_sym_RPAREN, - [59243] = 2, + anon_sym_STAR, + [59858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4572), 1, - aux_sym_preproc_if_token2, - [59250] = 2, + sym_identifier, + [59865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2955), 1, anon_sym_RPAREN, - [59257] = 2, + [59872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4574), 1, - anon_sym_RPAREN, - [59264] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4079), 1, - anon_sym_LF, - [59271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_RPAREN, - [59278] = 2, + sym_identifier, + [59879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4576), 1, sym_identifier, - [59285] = 2, + [59886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4578), 1, sym_identifier, - [59292] = 2, + [59893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4580), 1, - sym_identifier, - [59299] = 2, + anon_sym_SEMI, + [59900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2945), 1, + anon_sym_RPAREN, + [59907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2941), 1, + anon_sym_RPAREN, + [59914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2894), 1, + anon_sym_RPAREN, + [59921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4582), 1, - aux_sym_preproc_if_token2, - [59306] = 2, - ACTIONS(3229), 1, + anon_sym_SEMI, + [59928] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4584), 1, - anon_sym_LF, - [59313] = 2, - ACTIONS(3229), 1, + aux_sym_preproc_if_token2, + [59935] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4586), 1, - anon_sym_LF, - [59320] = 2, + sym_identifier, + [59942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4588), 1, sym_identifier, - [59327] = 2, + [59949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4590), 1, - anon_sym_LPAREN2, - [59334] = 2, + anon_sym_RPAREN, + [59956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4592), 1, - sym_identifier, - [59341] = 2, + aux_sym_preproc_if_token2, + [59963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4594), 1, - anon_sym_SEMI, - [59348] = 2, - ACTIONS(3), 1, + anon_sym_while, + [59970] = 2, + ACTIONS(3223), 1, sym_comment, ACTIONS(4596), 1, - anon_sym_COLON, - [59355] = 2, + anon_sym_LF, + [59977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4598), 1, aux_sym_preproc_if_token2, - [59362] = 2, + [59984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4600), 1, - anon_sym_RPAREN, - [59369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_RPAREN, - [59376] = 2, + sym_identifier, + [59991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4602), 1, aux_sym_preproc_if_token2, - [59383] = 2, + [59998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4604), 1, sym_identifier, - [59390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_RPAREN, - [59397] = 2, + [60005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4606), 1, - sym_identifier, - [59404] = 2, + aux_sym_preproc_if_token2, + [60012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4608), 1, - sym_identifier, - [59411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 1, - sym_identifier, - [59418] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4612), 1, - anon_sym_LF, - [59425] = 2, + anon_sym_SEMI, + [60019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, - anon_sym_LPAREN2, - [59432] = 2, + ACTIONS(3001), 1, + anon_sym_SEMI, + [60026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, - aux_sym_preproc_if_token2, - [59439] = 2, + ACTIONS(4610), 1, + anon_sym_SQUOTE, + [60033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, - anon_sym_RPAREN, - [59446] = 2, + ACTIONS(4612), 1, + anon_sym_SEMI, + [60040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, - aux_sym_preproc_if_token2, - [59453] = 2, + ACTIONS(3011), 1, + anon_sym_SEMI, + [60047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, - anon_sym_RPAREN, - [59460] = 2, + ACTIONS(4614), 1, + anon_sym_SEMI, + [60054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 1, - anon_sym_RPAREN, - [59467] = 2, + ACTIONS(2977), 1, + anon_sym_SEMI, + [60061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, - anon_sym_RPAREN, - [59474] = 2, + ACTIONS(4616), 1, + anon_sym_SEMI, + [60068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_RPAREN, - [59481] = 2, + ACTIONS(2971), 1, + anon_sym_SEMI, + [60075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(2969), 1, anon_sym_SEMI, - [59488] = 2, + [60082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, + ACTIONS(4618), 1, anon_sym_while, - [59495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4628), 1, - anon_sym_RBRACK, - [59502] = 2, + [60089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, - anon_sym_SEMI, - [59509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4630), 1, + ACTIONS(2943), 1, anon_sym_RPAREN, - [59516] = 2, + [60096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(4620), 1, anon_sym_SEMI, - [59523] = 2, + [60103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(2973), 1, anon_sym_RPAREN, - [59530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, - anon_sym_SEMI, - [59537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 1, - anon_sym_SEMI, - [59544] = 2, + [60110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, - anon_sym_SEMI, - [59551] = 2, + ACTIONS(4622), 1, + anon_sym_while, + [60117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(2999), 1, anon_sym_RPAREN, - [59558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4638), 1, - anon_sym_COLON, - [59565] = 2, + [60124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2890), 1, anon_sym_SEMI, - [59572] = 2, + [60131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4624), 1, sym_identifier, - [59579] = 2, + [60138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 1, - anon_sym_SEMI, - [59586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4642), 1, - anon_sym_LPAREN2, - [59593] = 2, + ACTIONS(4626), 1, + aux_sym_preproc_if_token2, + [60145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4628), 1, anon_sym_SEMI, - [59600] = 2, + [60152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - [59607] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_LF, - [59614] = 2, + [60159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4630), 1, aux_sym_preproc_if_token2, - [59621] = 2, + [60166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2967), 1, anon_sym_SEMI, - [59628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4650), 1, - sym_identifier, - [59635] = 2, + [60173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, - anon_sym_while, - [59642] = 2, + ACTIONS(4632), 1, + anon_sym_RPAREN, + [60180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, - anon_sym_LPAREN2, - [59649] = 2, + ACTIONS(2878), 1, + anon_sym_SEMI, + [60187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - aux_sym_preproc_if_token2, - [59656] = 2, - ACTIONS(3229), 1, + ACTIONS(2993), 1, + anon_sym_RPAREN, + [60194] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(4634), 1, anon_sym_LF, - [59663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4660), 1, - anon_sym_SEMI, - [59670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4662), 1, - aux_sym_preproc_if_token2, - [59677] = 2, + [60201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(3015), 1, anon_sym_SEMI, - [59684] = 2, + [60208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4636), 1, aux_sym_preproc_if_token2, - [59691] = 2, - ACTIONS(3), 1, + [60215] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(2822), 1, - anon_sym_SEMI, - [59698] = 2, - ACTIONS(3229), 1, - sym_comment, - ACTIONS(4017), 1, + ACTIONS(4638), 1, anon_sym_LF, - [59705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - anon_sym_SEMI, - [59712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4666), 1, - anon_sym_LPAREN2, - [59719] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4668), 1, - sym_identifier, - [59726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 1, - anon_sym_SEMI, - [59733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4670), 1, - sym_identifier, - [59740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4672), 1, - anon_sym_RBRACK, - [59747] = 2, + [60222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(3017), 1, anon_sym_RPAREN, - [59754] = 2, - ACTIONS(3), 1, + [60229] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(2834), 1, - anon_sym_RPAREN, - [59761] = 2, + ACTIONS(4119), 1, + anon_sym_LF, + [60236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4640), 1, anon_sym_while, - [59768] = 2, + [60243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_SEMI, - [59775] = 2, + ACTIONS(4642), 1, + ts_builtin_sym_end, + [60250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(4644), 1, anon_sym_RPAREN, - [59782] = 2, + [60257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4646), 1, anon_sym_SEMI, - [59789] = 2, + [60264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(3031), 1, anon_sym_SEMI, - [59796] = 2, + [60271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 1, + ACTIONS(2898), 1, anon_sym_SEMI, - [59803] = 2, + [60278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, - aux_sym_preproc_if_token2, - [59810] = 2, + ACTIONS(4648), 1, + anon_sym_LPAREN2, + [60285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(2896), 1, anon_sym_SEMI, - [59817] = 2, + [60292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, - aux_sym_preproc_if_token2, - [59824] = 2, + ACTIONS(4650), 1, + anon_sym_LPAREN2, + [60299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - aux_sym_preproc_if_token2, - [59831] = 2, + ACTIONS(4652), 1, + sym_identifier, + [60306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2888), 1, anon_sym_SEMI, - [59838] = 2, + [60313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4654), 1, anon_sym_SEMI, - [59845] = 2, + [60320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, + ACTIONS(4656), 1, anon_sym_SEMI, - [59852] = 2, + [60327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_COLON, - [59859] = 2, + ACTIONS(4658), 1, + anon_sym_LPAREN2, + [60334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4660), 1, aux_sym_preproc_if_token2, - [59866] = 2, + [60341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4662), 1, anon_sym_while, - [59873] = 2, + [60348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, - anon_sym_RPAREN, - [59880] = 2, + ACTIONS(4664), 1, + anon_sym_COLON, + [60355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_preproc_if_token2, - [59887] = 2, + ACTIONS(4666), 1, + anon_sym_RPAREN, + [60362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4668), 1, anon_sym_LPAREN2, - [59894] = 2, - ACTIONS(3), 1, + [60369] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4702), 1, - aux_sym_preproc_if_token2, - [59901] = 2, - ACTIONS(3), 1, + ACTIONS(4670), 1, + anon_sym_LF, + [60376] = 2, + ACTIONS(3223), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_RPAREN, - [59908] = 2, + ACTIONS(4672), 1, + anon_sym_LF, + [60383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(2991), 1, anon_sym_SEMI, - [59915] = 2, + [60390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_RPAREN, - [59922] = 2, + ACTIONS(4674), 1, + anon_sym_COLON, + [60397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, + ACTIONS(4676), 1, anon_sym_LPAREN2, - [59929] = 2, + [60404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_SEMI, - [59936] = 2, + ACTIONS(4678), 1, + anon_sym_SQUOTE, + [60411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_RPAREN, - [59943] = 2, + ACTIONS(4680), 1, + anon_sym_LPAREN2, + [60418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(3033), 1, anon_sym_SEMI, - [59950] = 2, + [60425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, - sym_identifier, - [59957] = 2, + ACTIONS(4682), 1, + anon_sym_SEMI, + [60432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, - aux_sym_preproc_if_token2, - [59964] = 2, + ACTIONS(4684), 1, + anon_sym_LPAREN2, + [60439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(3019), 1, anon_sym_SEMI, - [59971] = 2, + [60446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(2959), 1, anon_sym_SEMI, - [59978] = 2, + [60453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4686), 1, sym_identifier, - [59985] = 2, + [60460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4688), 1, anon_sym_LPAREN2, - [59992] = 2, + [60467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4690), 1, anon_sym_LPAREN2, - [59999] = 2, + [60474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4692), 1, anon_sym_LPAREN2, }; @@ -112904,8 +113297,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(539)] = 1017, [SMALL_STATE(540)] = 1130, [SMALL_STATE(541)] = 1248, - [SMALL_STATE(542)] = 1366, - [SMALL_STATE(543)] = 1484, + [SMALL_STATE(542)] = 1372, + [SMALL_STATE(543)] = 1490, [SMALL_STATE(544)] = 1608, [SMALL_STATE(545)] = 1726, [SMALL_STATE(546)] = 1844, @@ -112916,7 +113309,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(551)] = 2431, [SMALL_STATE(552)] = 2546, [SMALL_STATE(553)] = 2658, - [SMALL_STATE(554)] = 2765, + [SMALL_STATE(554)] = 2771, [SMALL_STATE(555)] = 2878, [SMALL_STATE(556)] = 2991, [SMALL_STATE(557)] = 3104, @@ -112929,15 +113322,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(564)] = 3895, [SMALL_STATE(565)] = 3975, [SMALL_STATE(566)] = 4055, - [SMALL_STATE(567)] = 4135, - [SMALL_STATE(568)] = 4215, - [SMALL_STATE(569)] = 4295, - [SMALL_STATE(570)] = 4375, - [SMALL_STATE(571)] = 4457, - [SMALL_STATE(572)] = 4539, + [SMALL_STATE(567)] = 4137, + [SMALL_STATE(568)] = 4219, + [SMALL_STATE(569)] = 4299, + [SMALL_STATE(570)] = 4379, + [SMALL_STATE(571)] = 4459, + [SMALL_STATE(572)] = 4541, [SMALL_STATE(573)] = 4621, [SMALL_STATE(574)] = 4703, - [SMALL_STATE(575)] = 4808, + [SMALL_STATE(575)] = 4784, [SMALL_STATE(576)] = 4889, [SMALL_STATE(577)] = 4966, [SMALL_STATE(578)] = 5069, @@ -112961,34 +113354,34 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(596)] = 6890, [SMALL_STATE(597)] = 6990, [SMALL_STATE(598)] = 7090, - [SMALL_STATE(599)] = 7198, - [SMALL_STATE(600)] = 7294, - [SMALL_STATE(601)] = 7394, - [SMALL_STATE(602)] = 7494, - [SMALL_STATE(603)] = 7594, - [SMALL_STATE(604)] = 7694, - [SMALL_STATE(605)] = 7794, - [SMALL_STATE(606)] = 7894, - [SMALL_STATE(607)] = 7990, - [SMALL_STATE(608)] = 8090, - [SMALL_STATE(609)] = 8190, - [SMALL_STATE(610)] = 8290, - [SMALL_STATE(611)] = 8390, - [SMALL_STATE(612)] = 8490, - [SMALL_STATE(613)] = 8590, - [SMALL_STATE(614)] = 8690, - [SMALL_STATE(615)] = 8790, - [SMALL_STATE(616)] = 8890, - [SMALL_STATE(617)] = 8990, - [SMALL_STATE(618)] = 9090, - [SMALL_STATE(619)] = 9190, - [SMALL_STATE(620)] = 9290, - [SMALL_STATE(621)] = 9390, - [SMALL_STATE(622)] = 9490, - [SMALL_STATE(623)] = 9590, - [SMALL_STATE(624)] = 9690, - [SMALL_STATE(625)] = 9790, - [SMALL_STATE(626)] = 9890, + [SMALL_STATE(599)] = 7190, + [SMALL_STATE(600)] = 7290, + [SMALL_STATE(601)] = 7390, + [SMALL_STATE(602)] = 7486, + [SMALL_STATE(603)] = 7586, + [SMALL_STATE(604)] = 7686, + [SMALL_STATE(605)] = 7786, + [SMALL_STATE(606)] = 7886, + [SMALL_STATE(607)] = 7986, + [SMALL_STATE(608)] = 8086, + [SMALL_STATE(609)] = 8186, + [SMALL_STATE(610)] = 8286, + [SMALL_STATE(611)] = 8386, + [SMALL_STATE(612)] = 8486, + [SMALL_STATE(613)] = 8586, + [SMALL_STATE(614)] = 8686, + [SMALL_STATE(615)] = 8786, + [SMALL_STATE(616)] = 8886, + [SMALL_STATE(617)] = 8986, + [SMALL_STATE(618)] = 9086, + [SMALL_STATE(619)] = 9186, + [SMALL_STATE(620)] = 9286, + [SMALL_STATE(621)] = 9394, + [SMALL_STATE(622)] = 9494, + [SMALL_STATE(623)] = 9594, + [SMALL_STATE(624)] = 9694, + [SMALL_STATE(625)] = 9794, + [SMALL_STATE(626)] = 9894, [SMALL_STATE(627)] = 9990, [SMALL_STATE(628)] = 10090, [SMALL_STATE(629)] = 10190, @@ -113015,106 +113408,106 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(650)] = 12290, [SMALL_STATE(651)] = 12390, [SMALL_STATE(652)] = 12490, - [SMALL_STATE(653)] = 12587, - [SMALL_STATE(654)] = 12684, - [SMALL_STATE(655)] = 12781, - [SMALL_STATE(656)] = 12878, - [SMALL_STATE(657)] = 12971, - [SMALL_STATE(658)] = 13068, - [SMALL_STATE(659)] = 13161, - [SMALL_STATE(660)] = 13254, - [SMALL_STATE(661)] = 13347, - [SMALL_STATE(662)] = 13440, - [SMALL_STATE(663)] = 13533, - [SMALL_STATE(664)] = 13630, - [SMALL_STATE(665)] = 13727, - [SMALL_STATE(666)] = 13820, - [SMALL_STATE(667)] = 13913, + [SMALL_STATE(653)] = 12583, + [SMALL_STATE(654)] = 12680, + [SMALL_STATE(655)] = 12773, + [SMALL_STATE(656)] = 12870, + [SMALL_STATE(657)] = 12963, + [SMALL_STATE(658)] = 13056, + [SMALL_STATE(659)] = 13153, + [SMALL_STATE(660)] = 13246, + [SMALL_STATE(661)] = 13339, + [SMALL_STATE(662)] = 13432, + [SMALL_STATE(663)] = 13525, + [SMALL_STATE(664)] = 13618, + [SMALL_STATE(665)] = 13715, + [SMALL_STATE(666)] = 13812, + [SMALL_STATE(667)] = 13909, [SMALL_STATE(668)] = 14006, [SMALL_STATE(669)] = 14099, [SMALL_STATE(670)] = 14193, - [SMALL_STATE(671)] = 14283, - [SMALL_STATE(672)] = 14377, - [SMALL_STATE(673)] = 14471, - [SMALL_STATE(674)] = 14565, - [SMALL_STATE(675)] = 14659, - [SMALL_STATE(676)] = 14753, - [SMALL_STATE(677)] = 14847, + [SMALL_STATE(671)] = 14287, + [SMALL_STATE(672)] = 14381, + [SMALL_STATE(673)] = 14477, + [SMALL_STATE(674)] = 14571, + [SMALL_STATE(675)] = 14665, + [SMALL_STATE(676)] = 14755, + [SMALL_STATE(677)] = 14849, [SMALL_STATE(678)] = 14943, [SMALL_STATE(679)] = 15037, [SMALL_STATE(680)] = 15131, - [SMALL_STATE(681)] = 15227, - [SMALL_STATE(682)] = 15317, - [SMALL_STATE(683)] = 15407, - [SMALL_STATE(684)] = 15497, - [SMALL_STATE(685)] = 15587, - [SMALL_STATE(686)] = 15677, - [SMALL_STATE(687)] = 15771, - [SMALL_STATE(688)] = 15861, - [SMALL_STATE(689)] = 15951, - [SMALL_STATE(690)] = 16041, - [SMALL_STATE(691)] = 16131, - [SMALL_STATE(692)] = 16225, - [SMALL_STATE(693)] = 16315, - [SMALL_STATE(694)] = 16409, - [SMALL_STATE(695)] = 16499, - [SMALL_STATE(696)] = 16589, - [SMALL_STATE(697)] = 16679, - [SMALL_STATE(698)] = 16773, - [SMALL_STATE(699)] = 16863, - [SMALL_STATE(700)] = 16957, - [SMALL_STATE(701)] = 17051, - [SMALL_STATE(702)] = 17145, - [SMALL_STATE(703)] = 17239, - [SMALL_STATE(704)] = 17333, - [SMALL_STATE(705)] = 17427, - [SMALL_STATE(706)] = 17521, + [SMALL_STATE(681)] = 15225, + [SMALL_STATE(682)] = 15319, + [SMALL_STATE(683)] = 15409, + [SMALL_STATE(684)] = 15499, + [SMALL_STATE(685)] = 15593, + [SMALL_STATE(686)] = 15687, + [SMALL_STATE(687)] = 15777, + [SMALL_STATE(688)] = 15867, + [SMALL_STATE(689)] = 15961, + [SMALL_STATE(690)] = 16055, + [SMALL_STATE(691)] = 16149, + [SMALL_STATE(692)] = 16239, + [SMALL_STATE(693)] = 16333, + [SMALL_STATE(694)] = 16427, + [SMALL_STATE(695)] = 16517, + [SMALL_STATE(696)] = 16611, + [SMALL_STATE(697)] = 16705, + [SMALL_STATE(698)] = 16801, + [SMALL_STATE(699)] = 16891, + [SMALL_STATE(700)] = 16985, + [SMALL_STATE(701)] = 17075, + [SMALL_STATE(702)] = 17165, + [SMALL_STATE(703)] = 17255, + [SMALL_STATE(704)] = 17345, + [SMALL_STATE(705)] = 17435, + [SMALL_STATE(706)] = 17525, [SMALL_STATE(707)] = 17615, - [SMALL_STATE(708)] = 17705, + [SMALL_STATE(708)] = 17709, [SMALL_STATE(709)] = 17799, [SMALL_STATE(710)] = 17893, - [SMALL_STATE(711)] = 17987, - [SMALL_STATE(712)] = 18081, - [SMALL_STATE(713)] = 18175, - [SMALL_STATE(714)] = 18269, - [SMALL_STATE(715)] = 18359, - [SMALL_STATE(716)] = 18453, - [SMALL_STATE(717)] = 18543, + [SMALL_STATE(711)] = 17983, + [SMALL_STATE(712)] = 18079, + [SMALL_STATE(713)] = 18169, + [SMALL_STATE(714)] = 18263, + [SMALL_STATE(715)] = 18357, + [SMALL_STATE(716)] = 18451, + [SMALL_STATE(717)] = 18545, [SMALL_STATE(718)] = 18639, [SMALL_STATE(719)] = 18733, - [SMALL_STATE(720)] = 18823, - [SMALL_STATE(721)] = 18913, - [SMALL_STATE(722)] = 19003, - [SMALL_STATE(723)] = 19097, - [SMALL_STATE(724)] = 19191, - [SMALL_STATE(725)] = 19285, - [SMALL_STATE(726)] = 19375, - [SMALL_STATE(727)] = 19469, - [SMALL_STATE(728)] = 19559, - [SMALL_STATE(729)] = 19653, - [SMALL_STATE(730)] = 19743, - [SMALL_STATE(731)] = 19833, - [SMALL_STATE(732)] = 19927, - [SMALL_STATE(733)] = 20021, - [SMALL_STATE(734)] = 20115, - [SMALL_STATE(735)] = 20209, - [SMALL_STATE(736)] = 20299, - [SMALL_STATE(737)] = 20393, - [SMALL_STATE(738)] = 20483, - [SMALL_STATE(739)] = 20577, - [SMALL_STATE(740)] = 20671, - [SMALL_STATE(741)] = 20761, - [SMALL_STATE(742)] = 20855, - [SMALL_STATE(743)] = 20949, - [SMALL_STATE(744)] = 21039, - [SMALL_STATE(745)] = 21129, - [SMALL_STATE(746)] = 21223, - [SMALL_STATE(747)] = 21319, - [SMALL_STATE(748)] = 21413, - [SMALL_STATE(749)] = 21509, + [SMALL_STATE(720)] = 18827, + [SMALL_STATE(721)] = 18917, + [SMALL_STATE(722)] = 19011, + [SMALL_STATE(723)] = 19105, + [SMALL_STATE(724)] = 19199, + [SMALL_STATE(725)] = 19293, + [SMALL_STATE(726)] = 19387, + [SMALL_STATE(727)] = 19481, + [SMALL_STATE(728)] = 19575, + [SMALL_STATE(729)] = 19669, + [SMALL_STATE(730)] = 19765, + [SMALL_STATE(731)] = 19855, + [SMALL_STATE(732)] = 19949, + [SMALL_STATE(733)] = 20039, + [SMALL_STATE(734)] = 20133, + [SMALL_STATE(735)] = 20227, + [SMALL_STATE(736)] = 20323, + [SMALL_STATE(737)] = 20413, + [SMALL_STATE(738)] = 20503, + [SMALL_STATE(739)] = 20593, + [SMALL_STATE(740)] = 20683, + [SMALL_STATE(741)] = 20773, + [SMALL_STATE(742)] = 20863, + [SMALL_STATE(743)] = 20953, + [SMALL_STATE(744)] = 21047, + [SMALL_STATE(745)] = 21141, + [SMALL_STATE(746)] = 21235, + [SMALL_STATE(747)] = 21325, + [SMALL_STATE(748)] = 21415, + [SMALL_STATE(749)] = 21505, [SMALL_STATE(750)] = 21599, [SMALL_STATE(751)] = 21693, - [SMALL_STATE(752)] = 21783, + [SMALL_STATE(752)] = 21787, [SMALL_STATE(753)] = 21877, [SMALL_STATE(754)] = 21942, [SMALL_STATE(755)] = 22007, @@ -113123,93 +113516,93 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(758)] = 22186, [SMALL_STATE(759)] = 22254, [SMALL_STATE(760)] = 22341, - [SMALL_STATE(761)] = 22425, - [SMALL_STATE(762)] = 22477, - [SMALL_STATE(763)] = 22529, - [SMALL_STATE(764)] = 22581, + [SMALL_STATE(761)] = 22393, + [SMALL_STATE(762)] = 22445, + [SMALL_STATE(763)] = 22497, + [SMALL_STATE(764)] = 22549, [SMALL_STATE(765)] = 22633, - [SMALL_STATE(766)] = 22684, - [SMALL_STATE(767)] = 22735, - [SMALL_STATE(768)] = 22798, - [SMALL_STATE(769)] = 22883, - [SMALL_STATE(770)] = 22960, - [SMALL_STATE(771)] = 23011, - [SMALL_STATE(772)] = 23062, - [SMALL_STATE(773)] = 23113, - [SMALL_STATE(774)] = 23164, - [SMALL_STATE(775)] = 23225, - [SMALL_STATE(776)] = 23276, - [SMALL_STATE(777)] = 23327, - [SMALL_STATE(778)] = 23388, - [SMALL_STATE(779)] = 23449, - [SMALL_STATE(780)] = 23500, - [SMALL_STATE(781)] = 23551, - [SMALL_STATE(782)] = 23602, - [SMALL_STATE(783)] = 23685, - [SMALL_STATE(784)] = 23736, - [SMALL_STATE(785)] = 23787, - [SMALL_STATE(786)] = 23838, - [SMALL_STATE(787)] = 23913, - [SMALL_STATE(788)] = 23972, - [SMALL_STATE(789)] = 24053, - [SMALL_STATE(790)] = 24104, - [SMALL_STATE(791)] = 24171, - [SMALL_STATE(792)] = 24222, - [SMALL_STATE(793)] = 24301, - [SMALL_STATE(794)] = 24386, - [SMALL_STATE(795)] = 24437, - [SMALL_STATE(796)] = 24488, - [SMALL_STATE(797)] = 24539, - [SMALL_STATE(798)] = 24590, - [SMALL_STATE(799)] = 24663, - [SMALL_STATE(800)] = 24714, - [SMALL_STATE(801)] = 24765, - [SMALL_STATE(802)] = 24816, - [SMALL_STATE(803)] = 24867, - [SMALL_STATE(804)] = 24938, - [SMALL_STATE(805)] = 24989, - [SMALL_STATE(806)] = 25040, - [SMALL_STATE(807)] = 25107, - [SMALL_STATE(808)] = 25172, - [SMALL_STATE(809)] = 25223, - [SMALL_STATE(810)] = 25284, + [SMALL_STATE(766)] = 22708, + [SMALL_STATE(767)] = 22793, + [SMALL_STATE(768)] = 22844, + [SMALL_STATE(769)] = 22895, + [SMALL_STATE(770)] = 22956, + [SMALL_STATE(771)] = 23017, + [SMALL_STATE(772)] = 23068, + [SMALL_STATE(773)] = 23119, + [SMALL_STATE(774)] = 23170, + [SMALL_STATE(775)] = 23231, + [SMALL_STATE(776)] = 23282, + [SMALL_STATE(777)] = 23333, + [SMALL_STATE(778)] = 23392, + [SMALL_STATE(779)] = 23475, + [SMALL_STATE(780)] = 23526, + [SMALL_STATE(781)] = 23577, + [SMALL_STATE(782)] = 23628, + [SMALL_STATE(783)] = 23689, + [SMALL_STATE(784)] = 23740, + [SMALL_STATE(785)] = 23791, + [SMALL_STATE(786)] = 23842, + [SMALL_STATE(787)] = 23893, + [SMALL_STATE(788)] = 23944, + [SMALL_STATE(789)] = 23995, + [SMALL_STATE(790)] = 24046, + [SMALL_STATE(791)] = 24097, + [SMALL_STATE(792)] = 24148, + [SMALL_STATE(793)] = 24199, + [SMALL_STATE(794)] = 24284, + [SMALL_STATE(795)] = 24335, + [SMALL_STATE(796)] = 24402, + [SMALL_STATE(797)] = 24467, + [SMALL_STATE(798)] = 24518, + [SMALL_STATE(799)] = 24569, + [SMALL_STATE(800)] = 24636, + [SMALL_STATE(801)] = 24687, + [SMALL_STATE(802)] = 24750, + [SMALL_STATE(803)] = 24801, + [SMALL_STATE(804)] = 24882, + [SMALL_STATE(805)] = 24933, + [SMALL_STATE(806)] = 25012, + [SMALL_STATE(807)] = 25089, + [SMALL_STATE(808)] = 25140, + [SMALL_STATE(809)] = 25191, + [SMALL_STATE(810)] = 25262, [SMALL_STATE(811)] = 25335, [SMALL_STATE(812)] = 25389, - [SMALL_STATE(813)] = 25466, + [SMALL_STATE(813)] = 25442, [SMALL_STATE(814)] = 25519, [SMALL_STATE(815)] = 25596, [SMALL_STATE(816)] = 25673, [SMALL_STATE(817)] = 25750, [SMALL_STATE(818)] = 25827, - [SMALL_STATE(819)] = 25887, + [SMALL_STATE(819)] = 25901, [SMALL_STATE(820)] = 25961, [SMALL_STATE(821)] = 26014, - [SMALL_STATE(822)] = 26061, - [SMALL_STATE(823)] = 26114, - [SMALL_STATE(824)] = 26167, - [SMALL_STATE(825)] = 26220, + [SMALL_STATE(822)] = 26067, + [SMALL_STATE(823)] = 26120, + [SMALL_STATE(824)] = 26173, + [SMALL_STATE(825)] = 26226, [SMALL_STATE(826)] = 26273, [SMALL_STATE(827)] = 26326, - [SMALL_STATE(828)] = 26388, - [SMALL_STATE(829)] = 26466, - [SMALL_STATE(830)] = 26536, - [SMALL_STATE(831)] = 26608, - [SMALL_STATE(832)] = 26682, - [SMALL_STATE(833)] = 26738, - [SMALL_STATE(834)] = 26814, - [SMALL_STATE(835)] = 26894, - [SMALL_STATE(836)] = 26960, - [SMALL_STATE(837)] = 27018, - [SMALL_STATE(838)] = 27074, - [SMALL_STATE(839)] = 27142, - [SMALL_STATE(840)] = 27222, - [SMALL_STATE(841)] = 27300, - [SMALL_STATE(842)] = 27356, - [SMALL_STATE(843)] = 27410, - [SMALL_STATE(844)] = 27466, - [SMALL_STATE(845)] = 27528, + [SMALL_STATE(828)] = 26396, + [SMALL_STATE(829)] = 26474, + [SMALL_STATE(830)] = 26542, + [SMALL_STATE(831)] = 26598, + [SMALL_STATE(832)] = 26652, + [SMALL_STATE(833)] = 26718, + [SMALL_STATE(834)] = 26774, + [SMALL_STATE(835)] = 26852, + [SMALL_STATE(836)] = 26932, + [SMALL_STATE(837)] = 26994, + [SMALL_STATE(838)] = 27050, + [SMALL_STATE(839)] = 27122, + [SMALL_STATE(840)] = 27180, + [SMALL_STATE(841)] = 27236, + [SMALL_STATE(842)] = 27296, + [SMALL_STATE(843)] = 27376, + [SMALL_STATE(844)] = 27438, + [SMALL_STATE(845)] = 27514, [SMALL_STATE(846)] = 27588, - [SMALL_STATE(847)] = 27633, + [SMALL_STATE(847)] = 27637, [SMALL_STATE(848)] = 27682, [SMALL_STATE(849)] = 27727, [SMALL_STATE(850)] = 27772, @@ -113238,1129 +113631,1127 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(873)] = 28784, [SMALL_STATE(874)] = 28828, [SMALL_STATE(875)] = 28872, - [SMALL_STATE(876)] = 28914, - [SMALL_STATE(877)] = 28956, - [SMALL_STATE(878)] = 28998, - [SMALL_STATE(879)] = 29040, - [SMALL_STATE(880)] = 29082, - [SMALL_STATE(881)] = 29124, - [SMALL_STATE(882)] = 29166, - [SMALL_STATE(883)] = 29208, - [SMALL_STATE(884)] = 29250, - [SMALL_STATE(885)] = 29292, - [SMALL_STATE(886)] = 29334, - [SMALL_STATE(887)] = 29376, - [SMALL_STATE(888)] = 29418, - [SMALL_STATE(889)] = 29460, - [SMALL_STATE(890)] = 29502, - [SMALL_STATE(891)] = 29544, - [SMALL_STATE(892)] = 29586, - [SMALL_STATE(893)] = 29628, - [SMALL_STATE(894)] = 29670, - [SMALL_STATE(895)] = 29712, - [SMALL_STATE(896)] = 29754, - [SMALL_STATE(897)] = 29796, - [SMALL_STATE(898)] = 29838, - [SMALL_STATE(899)] = 29880, - [SMALL_STATE(900)] = 29922, - [SMALL_STATE(901)] = 29964, - [SMALL_STATE(902)] = 30005, - [SMALL_STATE(903)] = 30046, - [SMALL_STATE(904)] = 30087, - [SMALL_STATE(905)] = 30128, - [SMALL_STATE(906)] = 30169, - [SMALL_STATE(907)] = 30209, - [SMALL_STATE(908)] = 30249, - [SMALL_STATE(909)] = 30289, - [SMALL_STATE(910)] = 30329, - [SMALL_STATE(911)] = 30391, - [SMALL_STATE(912)] = 30431, - [SMALL_STATE(913)] = 30471, - [SMALL_STATE(914)] = 30511, - [SMALL_STATE(915)] = 30569, - [SMALL_STATE(916)] = 30609, - [SMALL_STATE(917)] = 30653, - [SMALL_STATE(918)] = 30693, - [SMALL_STATE(919)] = 30733, - [SMALL_STATE(920)] = 30773, - [SMALL_STATE(921)] = 30817, - [SMALL_STATE(922)] = 30857, - [SMALL_STATE(923)] = 30901, - [SMALL_STATE(924)] = 30941, - [SMALL_STATE(925)] = 30981, - [SMALL_STATE(926)] = 31021, - [SMALL_STATE(927)] = 31065, - [SMALL_STATE(928)] = 31105, - [SMALL_STATE(929)] = 31145, - [SMALL_STATE(930)] = 31185, - [SMALL_STATE(931)] = 31225, - [SMALL_STATE(932)] = 31265, - [SMALL_STATE(933)] = 31337, - [SMALL_STATE(934)] = 31377, - [SMALL_STATE(935)] = 31429, - [SMALL_STATE(936)] = 31469, - [SMALL_STATE(937)] = 31543, - [SMALL_STATE(938)] = 31583, - [SMALL_STATE(939)] = 31623, - [SMALL_STATE(940)] = 31663, - [SMALL_STATE(941)] = 31703, - [SMALL_STATE(942)] = 31743, - [SMALL_STATE(943)] = 31783, - [SMALL_STATE(944)] = 31823, - [SMALL_STATE(945)] = 31863, - [SMALL_STATE(946)] = 31915, - [SMALL_STATE(947)] = 31973, - [SMALL_STATE(948)] = 32025, - [SMALL_STATE(949)] = 32081, - [SMALL_STATE(950)] = 32121, - [SMALL_STATE(951)] = 32161, - [SMALL_STATE(952)] = 32205, - [SMALL_STATE(953)] = 32245, - [SMALL_STATE(954)] = 32289, - [SMALL_STATE(955)] = 32355, - [SMALL_STATE(956)] = 32395, - [SMALL_STATE(957)] = 32463, - [SMALL_STATE(958)] = 32503, - [SMALL_STATE(959)] = 32543, - [SMALL_STATE(960)] = 32583, - [SMALL_STATE(961)] = 32623, - [SMALL_STATE(962)] = 32691, - [SMALL_STATE(963)] = 32731, - [SMALL_STATE(964)] = 32801, - [SMALL_STATE(965)] = 32865, - [SMALL_STATE(966)] = 32905, - [SMALL_STATE(967)] = 32957, - [SMALL_STATE(968)] = 32997, - [SMALL_STATE(969)] = 33037, - [SMALL_STATE(970)] = 33077, - [SMALL_STATE(971)] = 33117, - [SMALL_STATE(972)] = 33157, - [SMALL_STATE(973)] = 33197, - [SMALL_STATE(974)] = 33271, - [SMALL_STATE(975)] = 33311, - [SMALL_STATE(976)] = 33365, - [SMALL_STATE(977)] = 33405, - [SMALL_STATE(978)] = 33444, - [SMALL_STATE(979)] = 33483, - [SMALL_STATE(980)] = 33522, - [SMALL_STATE(981)] = 33561, - [SMALL_STATE(982)] = 33608, - [SMALL_STATE(983)] = 33670, - [SMALL_STATE(984)] = 33721, - [SMALL_STATE(985)] = 33772, - [SMALL_STATE(986)] = 33845, - [SMALL_STATE(987)] = 33904, - [SMALL_STATE(988)] = 33955, - [SMALL_STATE(989)] = 34014, - [SMALL_STATE(990)] = 34085, - [SMALL_STATE(991)] = 34132, - [SMALL_STATE(992)] = 34183, - [SMALL_STATE(993)] = 34258, - [SMALL_STATE(994)] = 34303, - [SMALL_STATE(995)] = 34362, - [SMALL_STATE(996)] = 34421, - [SMALL_STATE(997)] = 34480, - [SMALL_STATE(998)] = 34539, - [SMALL_STATE(999)] = 34584, - [SMALL_STATE(1000)] = 34635, - [SMALL_STATE(1001)] = 34680, - [SMALL_STATE(1002)] = 34739, - [SMALL_STATE(1003)] = 34798, - [SMALL_STATE(1004)] = 34857, - [SMALL_STATE(1005)] = 34916, - [SMALL_STATE(1006)] = 34975, - [SMALL_STATE(1007)] = 35050, - [SMALL_STATE(1008)] = 35125, - [SMALL_STATE(1009)] = 35184, - [SMALL_STATE(1010)] = 35229, - [SMALL_STATE(1011)] = 35304, - [SMALL_STATE(1012)] = 35376, - [SMALL_STATE(1013)] = 35448, - [SMALL_STATE(1014)] = 35520, - [SMALL_STATE(1015)] = 35592, - [SMALL_STATE(1016)] = 35664, - [SMALL_STATE(1017)] = 35736, - [SMALL_STATE(1018)] = 35808, - [SMALL_STATE(1019)] = 35880, - [SMALL_STATE(1020)] = 35950, - [SMALL_STATE(1021)] = 36022, - [SMALL_STATE(1022)] = 36094, - [SMALL_STATE(1023)] = 36138, - [SMALL_STATE(1024)] = 36208, - [SMALL_STATE(1025)] = 36278, - [SMALL_STATE(1026)] = 36350, - [SMALL_STATE(1027)] = 36422, - [SMALL_STATE(1028)] = 36494, - [SMALL_STATE(1029)] = 36566, - [SMALL_STATE(1030)] = 36638, - [SMALL_STATE(1031)] = 36710, - [SMALL_STATE(1032)] = 36782, - [SMALL_STATE(1033)] = 36854, - [SMALL_STATE(1034)] = 36926, - [SMALL_STATE(1035)] = 36998, - [SMALL_STATE(1036)] = 37070, - [SMALL_STATE(1037)] = 37142, - [SMALL_STATE(1038)] = 37214, - [SMALL_STATE(1039)] = 37286, - [SMALL_STATE(1040)] = 37358, - [SMALL_STATE(1041)] = 37430, - [SMALL_STATE(1042)] = 37502, - [SMALL_STATE(1043)] = 37574, - [SMALL_STATE(1044)] = 37646, - [SMALL_STATE(1045)] = 37718, - [SMALL_STATE(1046)] = 37790, - [SMALL_STATE(1047)] = 37862, - [SMALL_STATE(1048)] = 37934, - [SMALL_STATE(1049)] = 38006, - [SMALL_STATE(1050)] = 38078, - [SMALL_STATE(1051)] = 38150, - [SMALL_STATE(1052)] = 38222, - [SMALL_STATE(1053)] = 38294, - [SMALL_STATE(1054)] = 38366, - [SMALL_STATE(1055)] = 38438, - [SMALL_STATE(1056)] = 38510, - [SMALL_STATE(1057)] = 38582, - [SMALL_STATE(1058)] = 38654, - [SMALL_STATE(1059)] = 38726, - [SMALL_STATE(1060)] = 38798, - [SMALL_STATE(1061)] = 38870, - [SMALL_STATE(1062)] = 38942, - [SMALL_STATE(1063)] = 39014, - [SMALL_STATE(1064)] = 39084, - [SMALL_STATE(1065)] = 39156, - [SMALL_STATE(1066)] = 39228, - [SMALL_STATE(1067)] = 39300, - [SMALL_STATE(1068)] = 39372, - [SMALL_STATE(1069)] = 39444, - [SMALL_STATE(1070)] = 39516, - [SMALL_STATE(1071)] = 39588, - [SMALL_STATE(1072)] = 39660, - [SMALL_STATE(1073)] = 39732, - [SMALL_STATE(1074)] = 39804, - [SMALL_STATE(1075)] = 39876, - [SMALL_STATE(1076)] = 39948, - [SMALL_STATE(1077)] = 40020, - [SMALL_STATE(1078)] = 40092, - [SMALL_STATE(1079)] = 40164, - [SMALL_STATE(1080)] = 40236, - [SMALL_STATE(1081)] = 40308, - [SMALL_STATE(1082)] = 40380, - [SMALL_STATE(1083)] = 40452, - [SMALL_STATE(1084)] = 40524, - [SMALL_STATE(1085)] = 40596, - [SMALL_STATE(1086)] = 40666, - [SMALL_STATE(1087)] = 40738, - [SMALL_STATE(1088)] = 40808, - [SMALL_STATE(1089)] = 40880, - [SMALL_STATE(1090)] = 40952, - [SMALL_STATE(1091)] = 41007, - [SMALL_STATE(1092)] = 41066, - [SMALL_STATE(1093)] = 41105, - [SMALL_STATE(1094)] = 41174, - [SMALL_STATE(1095)] = 41213, - [SMALL_STATE(1096)] = 41282, - [SMALL_STATE(1097)] = 41351, - [SMALL_STATE(1098)] = 41390, - [SMALL_STATE(1099)] = 41459, - [SMALL_STATE(1100)] = 41528, - [SMALL_STATE(1101)] = 41583, - [SMALL_STATE(1102)] = 41652, - [SMALL_STATE(1103)] = 41721, - [SMALL_STATE(1104)] = 41760, - [SMALL_STATE(1105)] = 41829, - [SMALL_STATE(1106)] = 41898, - [SMALL_STATE(1107)] = 41967, - [SMALL_STATE(1108)] = 42036, - [SMALL_STATE(1109)] = 42105, - [SMALL_STATE(1110)] = 42160, - [SMALL_STATE(1111)] = 42229, - [SMALL_STATE(1112)] = 42298, - [SMALL_STATE(1113)] = 42367, - [SMALL_STATE(1114)] = 42406, - [SMALL_STATE(1115)] = 42475, - [SMALL_STATE(1116)] = 42514, - [SMALL_STATE(1117)] = 42553, - [SMALL_STATE(1118)] = 42592, - [SMALL_STATE(1119)] = 42661, - [SMALL_STATE(1120)] = 42728, - [SMALL_STATE(1121)] = 42797, - [SMALL_STATE(1122)] = 42866, - [SMALL_STATE(1123)] = 42935, - [SMALL_STATE(1124)] = 43004, - [SMALL_STATE(1125)] = 43055, - [SMALL_STATE(1126)] = 43124, - [SMALL_STATE(1127)] = 43177, - [SMALL_STATE(1128)] = 43246, - [SMALL_STATE(1129)] = 43299, - [SMALL_STATE(1130)] = 43356, - [SMALL_STATE(1131)] = 43425, - [SMALL_STATE(1132)] = 43494, - [SMALL_STATE(1133)] = 43563, - [SMALL_STATE(1134)] = 43624, - [SMALL_STATE(1135)] = 43687, - [SMALL_STATE(1136)] = 43736, - [SMALL_STATE(1137)] = 43801, - [SMALL_STATE(1138)] = 43864, - [SMALL_STATE(1139)] = 43919, - [SMALL_STATE(1140)] = 43988, - [SMALL_STATE(1141)] = 44026, - [SMALL_STATE(1142)] = 44060, - [SMALL_STATE(1143)] = 44094, - [SMALL_STATE(1144)] = 44128, - [SMALL_STATE(1145)] = 44162, - [SMALL_STATE(1146)] = 44196, - [SMALL_STATE(1147)] = 44230, - [SMALL_STATE(1148)] = 44264, - [SMALL_STATE(1149)] = 44302, - [SMALL_STATE(1150)] = 44336, - [SMALL_STATE(1151)] = 44372, - [SMALL_STATE(1152)] = 44406, - [SMALL_STATE(1153)] = 44440, - [SMALL_STATE(1154)] = 44474, - [SMALL_STATE(1155)] = 44526, - [SMALL_STATE(1156)] = 44560, - [SMALL_STATE(1157)] = 44598, - [SMALL_STATE(1158)] = 44632, - [SMALL_STATE(1159)] = 44666, - [SMALL_STATE(1160)] = 44718, - [SMALL_STATE(1161)] = 44752, - [SMALL_STATE(1162)] = 44786, - [SMALL_STATE(1163)] = 44820, - [SMALL_STATE(1164)] = 44854, - [SMALL_STATE(1165)] = 44888, - [SMALL_STATE(1166)] = 44922, - [SMALL_STATE(1167)] = 44958, - [SMALL_STATE(1168)] = 44996, - [SMALL_STATE(1169)] = 45030, - [SMALL_STATE(1170)] = 45064, - [SMALL_STATE(1171)] = 45098, - [SMALL_STATE(1172)] = 45132, - [SMALL_STATE(1173)] = 45166, - [SMALL_STATE(1174)] = 45232, - [SMALL_STATE(1175)] = 45266, - [SMALL_STATE(1176)] = 45300, - [SMALL_STATE(1177)] = 45334, - [SMALL_STATE(1178)] = 45383, - [SMALL_STATE(1179)] = 45432, - [SMALL_STATE(1180)] = 45481, - [SMALL_STATE(1181)] = 45530, - [SMALL_STATE(1182)] = 45579, - [SMALL_STATE(1183)] = 45628, - [SMALL_STATE(1184)] = 45677, - [SMALL_STATE(1185)] = 45726, - [SMALL_STATE(1186)] = 45775, - [SMALL_STATE(1187)] = 45824, - [SMALL_STATE(1188)] = 45862, - [SMALL_STATE(1189)] = 45908, - [SMALL_STATE(1190)] = 45942, - [SMALL_STATE(1191)] = 45988, - [SMALL_STATE(1192)] = 46034, - [SMALL_STATE(1193)] = 46080, - [SMALL_STATE(1194)] = 46126, - [SMALL_STATE(1195)] = 46172, - [SMALL_STATE(1196)] = 46215, - [SMALL_STATE(1197)] = 46252, - [SMALL_STATE(1198)] = 46295, - [SMALL_STATE(1199)] = 46338, - [SMALL_STATE(1200)] = 46381, - [SMALL_STATE(1201)] = 46424, - [SMALL_STATE(1202)] = 46467, - [SMALL_STATE(1203)] = 46510, - [SMALL_STATE(1204)] = 46553, - [SMALL_STATE(1205)] = 46596, - [SMALL_STATE(1206)] = 46639, - [SMALL_STATE(1207)] = 46682, - [SMALL_STATE(1208)] = 46725, - [SMALL_STATE(1209)] = 46768, - [SMALL_STATE(1210)] = 46811, - [SMALL_STATE(1211)] = 46854, - [SMALL_STATE(1212)] = 46897, - [SMALL_STATE(1213)] = 46940, - [SMALL_STATE(1214)] = 46995, - [SMALL_STATE(1215)] = 47038, - [SMALL_STATE(1216)] = 47081, - [SMALL_STATE(1217)] = 47124, - [SMALL_STATE(1218)] = 47179, - [SMALL_STATE(1219)] = 47222, - [SMALL_STATE(1220)] = 47265, - [SMALL_STATE(1221)] = 47308, - [SMALL_STATE(1222)] = 47341, - [SMALL_STATE(1223)] = 47384, - [SMALL_STATE(1224)] = 47427, - [SMALL_STATE(1225)] = 47470, - [SMALL_STATE(1226)] = 47513, - [SMALL_STATE(1227)] = 47556, - [SMALL_STATE(1228)] = 47599, - [SMALL_STATE(1229)] = 47642, - [SMALL_STATE(1230)] = 47685, - [SMALL_STATE(1231)] = 47725, - [SMALL_STATE(1232)] = 47765, - [SMALL_STATE(1233)] = 47805, - [SMALL_STATE(1234)] = 47843, - [SMALL_STATE(1235)] = 47883, - [SMALL_STATE(1236)] = 47923, - [SMALL_STATE(1237)] = 47963, - [SMALL_STATE(1238)] = 47991, - [SMALL_STATE(1239)] = 48041, - [SMALL_STATE(1240)] = 48081, - [SMALL_STATE(1241)] = 48121, - [SMALL_STATE(1242)] = 48161, - [SMALL_STATE(1243)] = 48201, - [SMALL_STATE(1244)] = 48241, - [SMALL_STATE(1245)] = 48281, - [SMALL_STATE(1246)] = 48321, - [SMALL_STATE(1247)] = 48361, - [SMALL_STATE(1248)] = 48401, - [SMALL_STATE(1249)] = 48429, - [SMALL_STATE(1250)] = 48469, - [SMALL_STATE(1251)] = 48497, - [SMALL_STATE(1252)] = 48533, - [SMALL_STATE(1253)] = 48573, - [SMALL_STATE(1254)] = 48613, - [SMALL_STATE(1255)] = 48653, - [SMALL_STATE(1256)] = 48681, - [SMALL_STATE(1257)] = 48721, - [SMALL_STATE(1258)] = 48761, - [SMALL_STATE(1259)] = 48801, - [SMALL_STATE(1260)] = 48841, - [SMALL_STATE(1261)] = 48869, - [SMALL_STATE(1262)] = 48909, - [SMALL_STATE(1263)] = 48949, - [SMALL_STATE(1264)] = 48977, - [SMALL_STATE(1265)] = 49017, - [SMALL_STATE(1266)] = 49053, - [SMALL_STATE(1267)] = 49093, - [SMALL_STATE(1268)] = 49133, - [SMALL_STATE(1269)] = 49173, - [SMALL_STATE(1270)] = 49201, - [SMALL_STATE(1271)] = 49241, - [SMALL_STATE(1272)] = 49275, - [SMALL_STATE(1273)] = 49315, - [SMALL_STATE(1274)] = 49351, - [SMALL_STATE(1275)] = 49391, - [SMALL_STATE(1276)] = 49431, - [SMALL_STATE(1277)] = 49471, - [SMALL_STATE(1278)] = 49513, - [SMALL_STATE(1279)] = 49557, - [SMALL_STATE(1280)] = 49603, - [SMALL_STATE(1281)] = 49649, - [SMALL_STATE(1282)] = 49689, - [SMALL_STATE(1283)] = 49737, - [SMALL_STATE(1284)] = 49765, - [SMALL_STATE(1285)] = 49797, - [SMALL_STATE(1286)] = 49837, - [SMALL_STATE(1287)] = 49877, - [SMALL_STATE(1288)] = 49905, - [SMALL_STATE(1289)] = 49933, - [SMALL_STATE(1290)] = 49981, - [SMALL_STATE(1291)] = 50026, - [SMALL_STATE(1292)] = 50065, - [SMALL_STATE(1293)] = 50092, - [SMALL_STATE(1294)] = 50141, - [SMALL_STATE(1295)] = 50172, - [SMALL_STATE(1296)] = 50199, - [SMALL_STATE(1297)] = 50226, - [SMALL_STATE(1298)] = 50271, - [SMALL_STATE(1299)] = 50304, - [SMALL_STATE(1300)] = 50339, - [SMALL_STATE(1301)] = 50366, - [SMALL_STATE(1302)] = 50393, - [SMALL_STATE(1303)] = 50430, - [SMALL_STATE(1304)] = 50475, - [SMALL_STATE(1305)] = 50502, - [SMALL_STATE(1306)] = 50547, - [SMALL_STATE(1307)] = 50588, - [SMALL_STATE(1308)] = 50631, - [SMALL_STATE(1309)] = 50676, - [SMALL_STATE(1310)] = 50721, - [SMALL_STATE(1311)] = 50748, - [SMALL_STATE(1312)] = 50775, - [SMALL_STATE(1313)] = 50804, - [SMALL_STATE(1314)] = 50849, - [SMALL_STATE(1315)] = 50898, - [SMALL_STATE(1316)] = 50925, - [SMALL_STATE(1317)] = 50970, - [SMALL_STATE(1318)] = 51015, - [SMALL_STATE(1319)] = 51042, - [SMALL_STATE(1320)] = 51087, - [SMALL_STATE(1321)] = 51132, - [SMALL_STATE(1322)] = 51177, - [SMALL_STATE(1323)] = 51207, - [SMALL_STATE(1324)] = 51237, - [SMALL_STATE(1325)] = 51267, - [SMALL_STATE(1326)] = 51292, - [SMALL_STATE(1327)] = 51321, - [SMALL_STATE(1328)] = 51346, - [SMALL_STATE(1329)] = 51375, - [SMALL_STATE(1330)] = 51409, - [SMALL_STATE(1331)] = 51433, - [SMALL_STATE(1332)] = 51471, - [SMALL_STATE(1333)] = 51509, - [SMALL_STATE(1334)] = 51547, - [SMALL_STATE(1335)] = 51585, - [SMALL_STATE(1336)] = 51626, - [SMALL_STATE(1337)] = 51667, - [SMALL_STATE(1338)] = 51708, - [SMALL_STATE(1339)] = 51749, - [SMALL_STATE(1340)] = 51781, - [SMALL_STATE(1341)] = 51813, - [SMALL_STATE(1342)] = 51845, - [SMALL_STATE(1343)] = 51877, - [SMALL_STATE(1344)] = 51909, - [SMALL_STATE(1345)] = 51941, - [SMALL_STATE(1346)] = 51963, - [SMALL_STATE(1347)] = 52001, - [SMALL_STATE(1348)] = 52039, - [SMALL_STATE(1349)] = 52071, - [SMALL_STATE(1350)] = 52103, - [SMALL_STATE(1351)] = 52135, - [SMALL_STATE(1352)] = 52167, - [SMALL_STATE(1353)] = 52191, - [SMALL_STATE(1354)] = 52223, - [SMALL_STATE(1355)] = 52261, - [SMALL_STATE(1356)] = 52293, - [SMALL_STATE(1357)] = 52331, - [SMALL_STATE(1358)] = 52369, - [SMALL_STATE(1359)] = 52398, - [SMALL_STATE(1360)] = 52425, - [SMALL_STATE(1361)] = 52452, - [SMALL_STATE(1362)] = 52479, - [SMALL_STATE(1363)] = 52502, - [SMALL_STATE(1364)] = 52529, - [SMALL_STATE(1365)] = 52552, - [SMALL_STATE(1366)] = 52579, - [SMALL_STATE(1367)] = 52602, - [SMALL_STATE(1368)] = 52633, - [SMALL_STATE(1369)] = 52662, - [SMALL_STATE(1370)] = 52691, - [SMALL_STATE(1371)] = 52720, - [SMALL_STATE(1372)] = 52749, - [SMALL_STATE(1373)] = 52776, - [SMALL_STATE(1374)] = 52805, - [SMALL_STATE(1375)] = 52834, - [SMALL_STATE(1376)] = 52863, - [SMALL_STATE(1377)] = 52890, - [SMALL_STATE(1378)] = 52917, - [SMALL_STATE(1379)] = 52946, - [SMALL_STATE(1380)] = 52975, - [SMALL_STATE(1381)] = 53002, - [SMALL_STATE(1382)] = 53029, - [SMALL_STATE(1383)] = 53047, - [SMALL_STATE(1384)] = 53079, - [SMALL_STATE(1385)] = 53101, - [SMALL_STATE(1386)] = 53119, - [SMALL_STATE(1387)] = 53151, - [SMALL_STATE(1388)] = 53173, - [SMALL_STATE(1389)] = 53197, - [SMALL_STATE(1390)] = 53229, - [SMALL_STATE(1391)] = 53261, - [SMALL_STATE(1392)] = 53293, - [SMALL_STATE(1393)] = 53317, - [SMALL_STATE(1394)] = 53349, - [SMALL_STATE(1395)] = 53367, - [SMALL_STATE(1396)] = 53392, - [SMALL_STATE(1397)] = 53421, - [SMALL_STATE(1398)] = 53450, - [SMALL_STATE(1399)] = 53479, - [SMALL_STATE(1400)] = 53508, - [SMALL_STATE(1401)] = 53537, - [SMALL_STATE(1402)] = 53558, - [SMALL_STATE(1403)] = 53583, - [SMALL_STATE(1404)] = 53612, - [SMALL_STATE(1405)] = 53641, - [SMALL_STATE(1406)] = 53662, - [SMALL_STATE(1407)] = 53689, - [SMALL_STATE(1408)] = 53718, - [SMALL_STATE(1409)] = 53743, - [SMALL_STATE(1410)] = 53772, - [SMALL_STATE(1411)] = 53801, - [SMALL_STATE(1412)] = 53830, - [SMALL_STATE(1413)] = 53859, - [SMALL_STATE(1414)] = 53888, - [SMALL_STATE(1415)] = 53917, - [SMALL_STATE(1416)] = 53942, - [SMALL_STATE(1417)] = 53963, - [SMALL_STATE(1418)] = 53984, - [SMALL_STATE(1419)] = 54013, - [SMALL_STATE(1420)] = 54042, - [SMALL_STATE(1421)] = 54063, - [SMALL_STATE(1422)] = 54092, - [SMALL_STATE(1423)] = 54121, - [SMALL_STATE(1424)] = 54150, - [SMALL_STATE(1425)] = 54179, - [SMALL_STATE(1426)] = 54205, - [SMALL_STATE(1427)] = 54223, - [SMALL_STATE(1428)] = 54249, - [SMALL_STATE(1429)] = 54265, - [SMALL_STATE(1430)] = 54285, - [SMALL_STATE(1431)] = 54311, - [SMALL_STATE(1432)] = 54327, - [SMALL_STATE(1433)] = 54343, - [SMALL_STATE(1434)] = 54359, - [SMALL_STATE(1435)] = 54375, - [SMALL_STATE(1436)] = 54391, - [SMALL_STATE(1437)] = 54407, - [SMALL_STATE(1438)] = 54423, - [SMALL_STATE(1439)] = 54439, - [SMALL_STATE(1440)] = 54459, - [SMALL_STATE(1441)] = 54483, - [SMALL_STATE(1442)] = 54503, - [SMALL_STATE(1443)] = 54519, - [SMALL_STATE(1444)] = 54535, - [SMALL_STATE(1445)] = 54559, - [SMALL_STATE(1446)] = 54575, - [SMALL_STATE(1447)] = 54591, - [SMALL_STATE(1448)] = 54607, - [SMALL_STATE(1449)] = 54633, - [SMALL_STATE(1450)] = 54659, - [SMALL_STATE(1451)] = 54682, - [SMALL_STATE(1452)] = 54699, - [SMALL_STATE(1453)] = 54722, - [SMALL_STATE(1454)] = 54745, - [SMALL_STATE(1455)] = 54762, - [SMALL_STATE(1456)] = 54780, - [SMALL_STATE(1457)] = 54794, - [SMALL_STATE(1458)] = 54808, - [SMALL_STATE(1459)] = 54826, - [SMALL_STATE(1460)] = 54844, - [SMALL_STATE(1461)] = 54858, - [SMALL_STATE(1462)] = 54872, - [SMALL_STATE(1463)] = 54890, - [SMALL_STATE(1464)] = 54906, - [SMALL_STATE(1465)] = 54922, - [SMALL_STATE(1466)] = 54936, - [SMALL_STATE(1467)] = 54954, - [SMALL_STATE(1468)] = 54968, - [SMALL_STATE(1469)] = 54982, - [SMALL_STATE(1470)] = 55000, - [SMALL_STATE(1471)] = 55018, - [SMALL_STATE(1472)] = 55036, - [SMALL_STATE(1473)] = 55050, - [SMALL_STATE(1474)] = 55064, - [SMALL_STATE(1475)] = 55080, - [SMALL_STATE(1476)] = 55094, - [SMALL_STATE(1477)] = 55108, - [SMALL_STATE(1478)] = 55127, - [SMALL_STATE(1479)] = 55138, - [SMALL_STATE(1480)] = 55155, - [SMALL_STATE(1481)] = 55174, - [SMALL_STATE(1482)] = 55193, - [SMALL_STATE(1483)] = 55204, - [SMALL_STATE(1484)] = 55223, - [SMALL_STATE(1485)] = 55242, - [SMALL_STATE(1486)] = 55261, - [SMALL_STATE(1487)] = 55280, - [SMALL_STATE(1488)] = 55299, - [SMALL_STATE(1489)] = 55310, - [SMALL_STATE(1490)] = 55321, - [SMALL_STATE(1491)] = 55332, - [SMALL_STATE(1492)] = 55343, - [SMALL_STATE(1493)] = 55354, - [SMALL_STATE(1494)] = 55373, - [SMALL_STATE(1495)] = 55392, - [SMALL_STATE(1496)] = 55411, - [SMALL_STATE(1497)] = 55430, - [SMALL_STATE(1498)] = 55441, - [SMALL_STATE(1499)] = 55452, - [SMALL_STATE(1500)] = 55469, - [SMALL_STATE(1501)] = 55480, - [SMALL_STATE(1502)] = 55499, - [SMALL_STATE(1503)] = 55510, - [SMALL_STATE(1504)] = 55529, - [SMALL_STATE(1505)] = 55540, - [SMALL_STATE(1506)] = 55556, - [SMALL_STATE(1507)] = 55572, - [SMALL_STATE(1508)] = 55588, - [SMALL_STATE(1509)] = 55602, - [SMALL_STATE(1510)] = 55618, - [SMALL_STATE(1511)] = 55632, - [SMALL_STATE(1512)] = 55646, - [SMALL_STATE(1513)] = 55660, - [SMALL_STATE(1514)] = 55674, - [SMALL_STATE(1515)] = 55690, - [SMALL_STATE(1516)] = 55700, - [SMALL_STATE(1517)] = 55716, - [SMALL_STATE(1518)] = 55732, - [SMALL_STATE(1519)] = 55748, - [SMALL_STATE(1520)] = 55764, - [SMALL_STATE(1521)] = 55780, - [SMALL_STATE(1522)] = 55794, - [SMALL_STATE(1523)] = 55808, - [SMALL_STATE(1524)] = 55824, - [SMALL_STATE(1525)] = 55838, - [SMALL_STATE(1526)] = 55854, - [SMALL_STATE(1527)] = 55870, - [SMALL_STATE(1528)] = 55886, - [SMALL_STATE(1529)] = 55902, - [SMALL_STATE(1530)] = 55916, - [SMALL_STATE(1531)] = 55930, - [SMALL_STATE(1532)] = 55946, - [SMALL_STATE(1533)] = 55960, - [SMALL_STATE(1534)] = 55976, - [SMALL_STATE(1535)] = 55992, - [SMALL_STATE(1536)] = 56005, - [SMALL_STATE(1537)] = 56018, - [SMALL_STATE(1538)] = 56031, - [SMALL_STATE(1539)] = 56044, - [SMALL_STATE(1540)] = 56057, - [SMALL_STATE(1541)] = 56070, - [SMALL_STATE(1542)] = 56083, - [SMALL_STATE(1543)] = 56096, - [SMALL_STATE(1544)] = 56109, - [SMALL_STATE(1545)] = 56122, - [SMALL_STATE(1546)] = 56135, - [SMALL_STATE(1547)] = 56148, - [SMALL_STATE(1548)] = 56161, - [SMALL_STATE(1549)] = 56174, - [SMALL_STATE(1550)] = 56183, - [SMALL_STATE(1551)] = 56196, - [SMALL_STATE(1552)] = 56209, - [SMALL_STATE(1553)] = 56222, - [SMALL_STATE(1554)] = 56235, - [SMALL_STATE(1555)] = 56248, - [SMALL_STATE(1556)] = 56261, - [SMALL_STATE(1557)] = 56274, - [SMALL_STATE(1558)] = 56287, - [SMALL_STATE(1559)] = 56296, - [SMALL_STATE(1560)] = 56309, - [SMALL_STATE(1561)] = 56322, - [SMALL_STATE(1562)] = 56335, - [SMALL_STATE(1563)] = 56348, - [SMALL_STATE(1564)] = 56357, - [SMALL_STATE(1565)] = 56370, - [SMALL_STATE(1566)] = 56383, - [SMALL_STATE(1567)] = 56396, - [SMALL_STATE(1568)] = 56405, - [SMALL_STATE(1569)] = 56418, - [SMALL_STATE(1570)] = 56431, - [SMALL_STATE(1571)] = 56444, - [SMALL_STATE(1572)] = 56457, - [SMALL_STATE(1573)] = 56470, - [SMALL_STATE(1574)] = 56483, - [SMALL_STATE(1575)] = 56492, - [SMALL_STATE(1576)] = 56505, - [SMALL_STATE(1577)] = 56518, - [SMALL_STATE(1578)] = 56527, - [SMALL_STATE(1579)] = 56538, - [SMALL_STATE(1580)] = 56551, - [SMALL_STATE(1581)] = 56564, - [SMALL_STATE(1582)] = 56577, - [SMALL_STATE(1583)] = 56586, - [SMALL_STATE(1584)] = 56599, - [SMALL_STATE(1585)] = 56612, - [SMALL_STATE(1586)] = 56625, - [SMALL_STATE(1587)] = 56638, - [SMALL_STATE(1588)] = 56651, - [SMALL_STATE(1589)] = 56664, - [SMALL_STATE(1590)] = 56673, - [SMALL_STATE(1591)] = 56686, - [SMALL_STATE(1592)] = 56699, - [SMALL_STATE(1593)] = 56712, - [SMALL_STATE(1594)] = 56725, - [SMALL_STATE(1595)] = 56734, - [SMALL_STATE(1596)] = 56747, - [SMALL_STATE(1597)] = 56760, - [SMALL_STATE(1598)] = 56769, - [SMALL_STATE(1599)] = 56782, - [SMALL_STATE(1600)] = 56795, - [SMALL_STATE(1601)] = 56808, - [SMALL_STATE(1602)] = 56821, - [SMALL_STATE(1603)] = 56834, - [SMALL_STATE(1604)] = 56847, - [SMALL_STATE(1605)] = 56860, - [SMALL_STATE(1606)] = 56873, - [SMALL_STATE(1607)] = 56886, - [SMALL_STATE(1608)] = 56899, - [SMALL_STATE(1609)] = 56912, - [SMALL_STATE(1610)] = 56925, - [SMALL_STATE(1611)] = 56938, - [SMALL_STATE(1612)] = 56951, - [SMALL_STATE(1613)] = 56964, - [SMALL_STATE(1614)] = 56977, - [SMALL_STATE(1615)] = 56990, - [SMALL_STATE(1616)] = 57003, - [SMALL_STATE(1617)] = 57014, - [SMALL_STATE(1618)] = 57027, - [SMALL_STATE(1619)] = 57040, - [SMALL_STATE(1620)] = 57053, - [SMALL_STATE(1621)] = 57066, - [SMALL_STATE(1622)] = 57079, - [SMALL_STATE(1623)] = 57092, - [SMALL_STATE(1624)] = 57105, - [SMALL_STATE(1625)] = 57118, - [SMALL_STATE(1626)] = 57131, - [SMALL_STATE(1627)] = 57144, - [SMALL_STATE(1628)] = 57157, - [SMALL_STATE(1629)] = 57170, - [SMALL_STATE(1630)] = 57183, - [SMALL_STATE(1631)] = 57196, - [SMALL_STATE(1632)] = 57209, - [SMALL_STATE(1633)] = 57222, - [SMALL_STATE(1634)] = 57235, - [SMALL_STATE(1635)] = 57248, - [SMALL_STATE(1636)] = 57261, - [SMALL_STATE(1637)] = 57274, - [SMALL_STATE(1638)] = 57287, - [SMALL_STATE(1639)] = 57300, - [SMALL_STATE(1640)] = 57310, - [SMALL_STATE(1641)] = 57318, - [SMALL_STATE(1642)] = 57328, - [SMALL_STATE(1643)] = 57336, - [SMALL_STATE(1644)] = 57344, - [SMALL_STATE(1645)] = 57352, - [SMALL_STATE(1646)] = 57362, - [SMALL_STATE(1647)] = 57372, - [SMALL_STATE(1648)] = 57380, - [SMALL_STATE(1649)] = 57390, - [SMALL_STATE(1650)] = 57400, - [SMALL_STATE(1651)] = 57410, - [SMALL_STATE(1652)] = 57420, - [SMALL_STATE(1653)] = 57430, - [SMALL_STATE(1654)] = 57440, - [SMALL_STATE(1655)] = 57450, - [SMALL_STATE(1656)] = 57458, - [SMALL_STATE(1657)] = 57466, - [SMALL_STATE(1658)] = 57474, - [SMALL_STATE(1659)] = 57484, - [SMALL_STATE(1660)] = 57492, - [SMALL_STATE(1661)] = 57500, - [SMALL_STATE(1662)] = 57510, - [SMALL_STATE(1663)] = 57520, - [SMALL_STATE(1664)] = 57530, - [SMALL_STATE(1665)] = 57540, - [SMALL_STATE(1666)] = 57550, - [SMALL_STATE(1667)] = 57558, - [SMALL_STATE(1668)] = 57568, - [SMALL_STATE(1669)] = 57578, - [SMALL_STATE(1670)] = 57588, - [SMALL_STATE(1671)] = 57598, - [SMALL_STATE(1672)] = 57608, - [SMALL_STATE(1673)] = 57618, - [SMALL_STATE(1674)] = 57628, - [SMALL_STATE(1675)] = 57638, - [SMALL_STATE(1676)] = 57646, - [SMALL_STATE(1677)] = 57654, - [SMALL_STATE(1678)] = 57664, - [SMALL_STATE(1679)] = 57674, - [SMALL_STATE(1680)] = 57684, - [SMALL_STATE(1681)] = 57694, - [SMALL_STATE(1682)] = 57702, - [SMALL_STATE(1683)] = 57712, - [SMALL_STATE(1684)] = 57722, - [SMALL_STATE(1685)] = 57732, - [SMALL_STATE(1686)] = 57742, - [SMALL_STATE(1687)] = 57752, - [SMALL_STATE(1688)] = 57762, - [SMALL_STATE(1689)] = 57772, - [SMALL_STATE(1690)] = 57782, - [SMALL_STATE(1691)] = 57792, - [SMALL_STATE(1692)] = 57802, - [SMALL_STATE(1693)] = 57812, - [SMALL_STATE(1694)] = 57822, - [SMALL_STATE(1695)] = 57830, - [SMALL_STATE(1696)] = 57838, - [SMALL_STATE(1697)] = 57846, - [SMALL_STATE(1698)] = 57856, - [SMALL_STATE(1699)] = 57866, - [SMALL_STATE(1700)] = 57876, - [SMALL_STATE(1701)] = 57886, - [SMALL_STATE(1702)] = 57896, - [SMALL_STATE(1703)] = 57906, - [SMALL_STATE(1704)] = 57914, - [SMALL_STATE(1705)] = 57924, - [SMALL_STATE(1706)] = 57932, - [SMALL_STATE(1707)] = 57940, - [SMALL_STATE(1708)] = 57950, - [SMALL_STATE(1709)] = 57960, - [SMALL_STATE(1710)] = 57970, - [SMALL_STATE(1711)] = 57980, - [SMALL_STATE(1712)] = 57990, - [SMALL_STATE(1713)] = 58000, - [SMALL_STATE(1714)] = 58008, - [SMALL_STATE(1715)] = 58018, - [SMALL_STATE(1716)] = 58025, - [SMALL_STATE(1717)] = 58032, - [SMALL_STATE(1718)] = 58039, - [SMALL_STATE(1719)] = 58046, - [SMALL_STATE(1720)] = 58053, - [SMALL_STATE(1721)] = 58060, - [SMALL_STATE(1722)] = 58067, - [SMALL_STATE(1723)] = 58074, - [SMALL_STATE(1724)] = 58081, - [SMALL_STATE(1725)] = 58088, - [SMALL_STATE(1726)] = 58095, - [SMALL_STATE(1727)] = 58102, - [SMALL_STATE(1728)] = 58109, - [SMALL_STATE(1729)] = 58116, - [SMALL_STATE(1730)] = 58123, - [SMALL_STATE(1731)] = 58130, - [SMALL_STATE(1732)] = 58137, - [SMALL_STATE(1733)] = 58144, - [SMALL_STATE(1734)] = 58151, - [SMALL_STATE(1735)] = 58158, - [SMALL_STATE(1736)] = 58165, - [SMALL_STATE(1737)] = 58172, - [SMALL_STATE(1738)] = 58179, - [SMALL_STATE(1739)] = 58186, - [SMALL_STATE(1740)] = 58193, - [SMALL_STATE(1741)] = 58200, - [SMALL_STATE(1742)] = 58207, - [SMALL_STATE(1743)] = 58214, - [SMALL_STATE(1744)] = 58221, - [SMALL_STATE(1745)] = 58228, - [SMALL_STATE(1746)] = 58235, - [SMALL_STATE(1747)] = 58242, - [SMALL_STATE(1748)] = 58249, - [SMALL_STATE(1749)] = 58256, - [SMALL_STATE(1750)] = 58263, - [SMALL_STATE(1751)] = 58270, - [SMALL_STATE(1752)] = 58277, - [SMALL_STATE(1753)] = 58284, - [SMALL_STATE(1754)] = 58291, - [SMALL_STATE(1755)] = 58298, - [SMALL_STATE(1756)] = 58305, - [SMALL_STATE(1757)] = 58312, - [SMALL_STATE(1758)] = 58319, - [SMALL_STATE(1759)] = 58326, - [SMALL_STATE(1760)] = 58333, - [SMALL_STATE(1761)] = 58340, - [SMALL_STATE(1762)] = 58347, - [SMALL_STATE(1763)] = 58354, - [SMALL_STATE(1764)] = 58361, - [SMALL_STATE(1765)] = 58368, - [SMALL_STATE(1766)] = 58375, - [SMALL_STATE(1767)] = 58382, - [SMALL_STATE(1768)] = 58389, - [SMALL_STATE(1769)] = 58396, - [SMALL_STATE(1770)] = 58403, - [SMALL_STATE(1771)] = 58410, - [SMALL_STATE(1772)] = 58417, - [SMALL_STATE(1773)] = 58424, - [SMALL_STATE(1774)] = 58431, - [SMALL_STATE(1775)] = 58438, - [SMALL_STATE(1776)] = 58445, - [SMALL_STATE(1777)] = 58452, - [SMALL_STATE(1778)] = 58459, - [SMALL_STATE(1779)] = 58466, - [SMALL_STATE(1780)] = 58473, - [SMALL_STATE(1781)] = 58480, - [SMALL_STATE(1782)] = 58487, - [SMALL_STATE(1783)] = 58494, - [SMALL_STATE(1784)] = 58501, - [SMALL_STATE(1785)] = 58508, - [SMALL_STATE(1786)] = 58515, - [SMALL_STATE(1787)] = 58522, - [SMALL_STATE(1788)] = 58529, - [SMALL_STATE(1789)] = 58536, - [SMALL_STATE(1790)] = 58543, - [SMALL_STATE(1791)] = 58550, - [SMALL_STATE(1792)] = 58557, - [SMALL_STATE(1793)] = 58564, - [SMALL_STATE(1794)] = 58571, - [SMALL_STATE(1795)] = 58578, - [SMALL_STATE(1796)] = 58585, - [SMALL_STATE(1797)] = 58592, - [SMALL_STATE(1798)] = 58599, - [SMALL_STATE(1799)] = 58606, - [SMALL_STATE(1800)] = 58613, - [SMALL_STATE(1801)] = 58620, - [SMALL_STATE(1802)] = 58627, - [SMALL_STATE(1803)] = 58634, - [SMALL_STATE(1804)] = 58641, - [SMALL_STATE(1805)] = 58648, - [SMALL_STATE(1806)] = 58655, - [SMALL_STATE(1807)] = 58662, - [SMALL_STATE(1808)] = 58669, - [SMALL_STATE(1809)] = 58676, - [SMALL_STATE(1810)] = 58683, - [SMALL_STATE(1811)] = 58690, - [SMALL_STATE(1812)] = 58697, - [SMALL_STATE(1813)] = 58704, - [SMALL_STATE(1814)] = 58711, - [SMALL_STATE(1815)] = 58718, - [SMALL_STATE(1816)] = 58725, - [SMALL_STATE(1817)] = 58732, - [SMALL_STATE(1818)] = 58739, - [SMALL_STATE(1819)] = 58746, - [SMALL_STATE(1820)] = 58753, - [SMALL_STATE(1821)] = 58760, - [SMALL_STATE(1822)] = 58767, - [SMALL_STATE(1823)] = 58774, - [SMALL_STATE(1824)] = 58781, - [SMALL_STATE(1825)] = 58788, - [SMALL_STATE(1826)] = 58795, - [SMALL_STATE(1827)] = 58802, - [SMALL_STATE(1828)] = 58809, - [SMALL_STATE(1829)] = 58816, - [SMALL_STATE(1830)] = 58823, - [SMALL_STATE(1831)] = 58830, - [SMALL_STATE(1832)] = 58837, - [SMALL_STATE(1833)] = 58844, - [SMALL_STATE(1834)] = 58851, - [SMALL_STATE(1835)] = 58858, - [SMALL_STATE(1836)] = 58865, - [SMALL_STATE(1837)] = 58872, - [SMALL_STATE(1838)] = 58879, - [SMALL_STATE(1839)] = 58886, - [SMALL_STATE(1840)] = 58893, - [SMALL_STATE(1841)] = 58900, - [SMALL_STATE(1842)] = 58907, - [SMALL_STATE(1843)] = 58914, - [SMALL_STATE(1844)] = 58921, - [SMALL_STATE(1845)] = 58928, - [SMALL_STATE(1846)] = 58935, - [SMALL_STATE(1847)] = 58942, - [SMALL_STATE(1848)] = 58949, - [SMALL_STATE(1849)] = 58956, - [SMALL_STATE(1850)] = 58963, - [SMALL_STATE(1851)] = 58970, - [SMALL_STATE(1852)] = 58977, - [SMALL_STATE(1853)] = 58984, - [SMALL_STATE(1854)] = 58991, - [SMALL_STATE(1855)] = 58998, - [SMALL_STATE(1856)] = 59005, - [SMALL_STATE(1857)] = 59012, - [SMALL_STATE(1858)] = 59019, - [SMALL_STATE(1859)] = 59026, - [SMALL_STATE(1860)] = 59033, - [SMALL_STATE(1861)] = 59040, - [SMALL_STATE(1862)] = 59047, - [SMALL_STATE(1863)] = 59054, - [SMALL_STATE(1864)] = 59061, - [SMALL_STATE(1865)] = 59068, - [SMALL_STATE(1866)] = 59075, - [SMALL_STATE(1867)] = 59082, - [SMALL_STATE(1868)] = 59089, - [SMALL_STATE(1869)] = 59096, - [SMALL_STATE(1870)] = 59103, - [SMALL_STATE(1871)] = 59110, - [SMALL_STATE(1872)] = 59117, - [SMALL_STATE(1873)] = 59124, - [SMALL_STATE(1874)] = 59131, - [SMALL_STATE(1875)] = 59138, - [SMALL_STATE(1876)] = 59145, - [SMALL_STATE(1877)] = 59152, - [SMALL_STATE(1878)] = 59159, - [SMALL_STATE(1879)] = 59166, - [SMALL_STATE(1880)] = 59173, - [SMALL_STATE(1881)] = 59180, - [SMALL_STATE(1882)] = 59187, - [SMALL_STATE(1883)] = 59194, - [SMALL_STATE(1884)] = 59201, - [SMALL_STATE(1885)] = 59208, - [SMALL_STATE(1886)] = 59215, - [SMALL_STATE(1887)] = 59222, - [SMALL_STATE(1888)] = 59229, - [SMALL_STATE(1889)] = 59236, - [SMALL_STATE(1890)] = 59243, - [SMALL_STATE(1891)] = 59250, - [SMALL_STATE(1892)] = 59257, - [SMALL_STATE(1893)] = 59264, - [SMALL_STATE(1894)] = 59271, - [SMALL_STATE(1895)] = 59278, - [SMALL_STATE(1896)] = 59285, - [SMALL_STATE(1897)] = 59292, - [SMALL_STATE(1898)] = 59299, - [SMALL_STATE(1899)] = 59306, - [SMALL_STATE(1900)] = 59313, - [SMALL_STATE(1901)] = 59320, - [SMALL_STATE(1902)] = 59327, - [SMALL_STATE(1903)] = 59334, - [SMALL_STATE(1904)] = 59341, - [SMALL_STATE(1905)] = 59348, - [SMALL_STATE(1906)] = 59355, - [SMALL_STATE(1907)] = 59362, - [SMALL_STATE(1908)] = 59369, - [SMALL_STATE(1909)] = 59376, - [SMALL_STATE(1910)] = 59383, - [SMALL_STATE(1911)] = 59390, - [SMALL_STATE(1912)] = 59397, - [SMALL_STATE(1913)] = 59404, - [SMALL_STATE(1914)] = 59411, - [SMALL_STATE(1915)] = 59418, - [SMALL_STATE(1916)] = 59425, - [SMALL_STATE(1917)] = 59432, - [SMALL_STATE(1918)] = 59439, - [SMALL_STATE(1919)] = 59446, - [SMALL_STATE(1920)] = 59453, - [SMALL_STATE(1921)] = 59460, - [SMALL_STATE(1922)] = 59467, - [SMALL_STATE(1923)] = 59474, - [SMALL_STATE(1924)] = 59481, - [SMALL_STATE(1925)] = 59488, - [SMALL_STATE(1926)] = 59495, - [SMALL_STATE(1927)] = 59502, - [SMALL_STATE(1928)] = 59509, - [SMALL_STATE(1929)] = 59516, - [SMALL_STATE(1930)] = 59523, - [SMALL_STATE(1931)] = 59530, - [SMALL_STATE(1932)] = 59537, - [SMALL_STATE(1933)] = 59544, - [SMALL_STATE(1934)] = 59551, - [SMALL_STATE(1935)] = 59558, - [SMALL_STATE(1936)] = 59565, - [SMALL_STATE(1937)] = 59572, - [SMALL_STATE(1938)] = 59579, - [SMALL_STATE(1939)] = 59586, - [SMALL_STATE(1940)] = 59593, - [SMALL_STATE(1941)] = 59600, - [SMALL_STATE(1942)] = 59607, - [SMALL_STATE(1943)] = 59614, - [SMALL_STATE(1944)] = 59621, - [SMALL_STATE(1945)] = 59628, - [SMALL_STATE(1946)] = 59635, - [SMALL_STATE(1947)] = 59642, - [SMALL_STATE(1948)] = 59649, - [SMALL_STATE(1949)] = 59656, - [SMALL_STATE(1950)] = 59663, - [SMALL_STATE(1951)] = 59670, - [SMALL_STATE(1952)] = 59677, - [SMALL_STATE(1953)] = 59684, - [SMALL_STATE(1954)] = 59691, - [SMALL_STATE(1955)] = 59698, - [SMALL_STATE(1956)] = 59705, - [SMALL_STATE(1957)] = 59712, - [SMALL_STATE(1958)] = 59719, - [SMALL_STATE(1959)] = 59726, - [SMALL_STATE(1960)] = 59733, - [SMALL_STATE(1961)] = 59740, - [SMALL_STATE(1962)] = 59747, - [SMALL_STATE(1963)] = 59754, - [SMALL_STATE(1964)] = 59761, - [SMALL_STATE(1965)] = 59768, - [SMALL_STATE(1966)] = 59775, - [SMALL_STATE(1967)] = 59782, - [SMALL_STATE(1968)] = 59789, - [SMALL_STATE(1969)] = 59796, - [SMALL_STATE(1970)] = 59803, - [SMALL_STATE(1971)] = 59810, - [SMALL_STATE(1972)] = 59817, - [SMALL_STATE(1973)] = 59824, - [SMALL_STATE(1974)] = 59831, - [SMALL_STATE(1975)] = 59838, - [SMALL_STATE(1976)] = 59845, - [SMALL_STATE(1977)] = 59852, - [SMALL_STATE(1978)] = 59859, - [SMALL_STATE(1979)] = 59866, - [SMALL_STATE(1980)] = 59873, - [SMALL_STATE(1981)] = 59880, - [SMALL_STATE(1982)] = 59887, - [SMALL_STATE(1983)] = 59894, - [SMALL_STATE(1984)] = 59901, - [SMALL_STATE(1985)] = 59908, - [SMALL_STATE(1986)] = 59915, - [SMALL_STATE(1987)] = 59922, - [SMALL_STATE(1988)] = 59929, - [SMALL_STATE(1989)] = 59936, - [SMALL_STATE(1990)] = 59943, - [SMALL_STATE(1991)] = 59950, - [SMALL_STATE(1992)] = 59957, - [SMALL_STATE(1993)] = 59964, - [SMALL_STATE(1994)] = 59971, - [SMALL_STATE(1995)] = 59978, - [SMALL_STATE(1996)] = 59985, - [SMALL_STATE(1997)] = 59992, - [SMALL_STATE(1998)] = 59999, + [SMALL_STATE(876)] = 28940, + [SMALL_STATE(877)] = 28982, + [SMALL_STATE(878)] = 29024, + [SMALL_STATE(879)] = 29066, + [SMALL_STATE(880)] = 29108, + [SMALL_STATE(881)] = 29150, + [SMALL_STATE(882)] = 29192, + [SMALL_STATE(883)] = 29234, + [SMALL_STATE(884)] = 29276, + [SMALL_STATE(885)] = 29344, + [SMALL_STATE(886)] = 29386, + [SMALL_STATE(887)] = 29428, + [SMALL_STATE(888)] = 29470, + [SMALL_STATE(889)] = 29538, + [SMALL_STATE(890)] = 29580, + [SMALL_STATE(891)] = 29630, + [SMALL_STATE(892)] = 29680, + [SMALL_STATE(893)] = 29722, + [SMALL_STATE(894)] = 29764, + [SMALL_STATE(895)] = 29806, + [SMALL_STATE(896)] = 29856, + [SMALL_STATE(897)] = 29898, + [SMALL_STATE(898)] = 29948, + [SMALL_STATE(899)] = 29990, + [SMALL_STATE(900)] = 30032, + [SMALL_STATE(901)] = 30074, + [SMALL_STATE(902)] = 30116, + [SMALL_STATE(903)] = 30158, + [SMALL_STATE(904)] = 30200, + [SMALL_STATE(905)] = 30242, + [SMALL_STATE(906)] = 30310, + [SMALL_STATE(907)] = 30352, + [SMALL_STATE(908)] = 30394, + [SMALL_STATE(909)] = 30436, + [SMALL_STATE(910)] = 30477, + [SMALL_STATE(911)] = 30518, + [SMALL_STATE(912)] = 30559, + [SMALL_STATE(913)] = 30600, + [SMALL_STATE(914)] = 30641, + [SMALL_STATE(915)] = 30681, + [SMALL_STATE(916)] = 30721, + [SMALL_STATE(917)] = 30761, + [SMALL_STATE(918)] = 30801, + [SMALL_STATE(919)] = 30841, + [SMALL_STATE(920)] = 30881, + [SMALL_STATE(921)] = 30921, + [SMALL_STATE(922)] = 30991, + [SMALL_STATE(923)] = 31035, + [SMALL_STATE(924)] = 31103, + [SMALL_STATE(925)] = 31147, + [SMALL_STATE(926)] = 31187, + [SMALL_STATE(927)] = 31255, + [SMALL_STATE(928)] = 31295, + [SMALL_STATE(929)] = 31335, + [SMALL_STATE(930)] = 31375, + [SMALL_STATE(931)] = 31415, + [SMALL_STATE(932)] = 31455, + [SMALL_STATE(933)] = 31495, + [SMALL_STATE(934)] = 31535, + [SMALL_STATE(935)] = 31575, + [SMALL_STATE(936)] = 31619, + [SMALL_STATE(937)] = 31659, + [SMALL_STATE(938)] = 31699, + [SMALL_STATE(939)] = 31773, + [SMALL_STATE(940)] = 31813, + [SMALL_STATE(941)] = 31853, + [SMALL_STATE(942)] = 31905, + [SMALL_STATE(943)] = 31945, + [SMALL_STATE(944)] = 31985, + [SMALL_STATE(945)] = 32025, + [SMALL_STATE(946)] = 32065, + [SMALL_STATE(947)] = 32105, + [SMALL_STATE(948)] = 32145, + [SMALL_STATE(949)] = 32189, + [SMALL_STATE(950)] = 32243, + [SMALL_STATE(951)] = 32283, + [SMALL_STATE(952)] = 32323, + [SMALL_STATE(953)] = 32375, + [SMALL_STATE(954)] = 32419, + [SMALL_STATE(955)] = 32459, + [SMALL_STATE(956)] = 32499, + [SMALL_STATE(957)] = 32543, + [SMALL_STATE(958)] = 32609, + [SMALL_STATE(959)] = 32649, + [SMALL_STATE(960)] = 32693, + [SMALL_STATE(961)] = 32757, + [SMALL_STATE(962)] = 32797, + [SMALL_STATE(963)] = 32859, + [SMALL_STATE(964)] = 32917, + [SMALL_STATE(965)] = 32973, + [SMALL_STATE(966)] = 33013, + [SMALL_STATE(967)] = 33053, + [SMALL_STATE(968)] = 33093, + [SMALL_STATE(969)] = 33133, + [SMALL_STATE(970)] = 33207, + [SMALL_STATE(971)] = 33247, + [SMALL_STATE(972)] = 33287, + [SMALL_STATE(973)] = 33339, + [SMALL_STATE(974)] = 33383, + [SMALL_STATE(975)] = 33427, + [SMALL_STATE(976)] = 33467, + [SMALL_STATE(977)] = 33507, + [SMALL_STATE(978)] = 33559, + [SMALL_STATE(979)] = 33617, + [SMALL_STATE(980)] = 33689, + [SMALL_STATE(981)] = 33729, + [SMALL_STATE(982)] = 33773, + [SMALL_STATE(983)] = 33817, + [SMALL_STATE(984)] = 33857, + [SMALL_STATE(985)] = 33897, + [SMALL_STATE(986)] = 33937, + [SMALL_STATE(987)] = 33977, + [SMALL_STATE(988)] = 34017, + [SMALL_STATE(989)] = 34061, + [SMALL_STATE(990)] = 34101, + [SMALL_STATE(991)] = 34145, + [SMALL_STATE(992)] = 34189, + [SMALL_STATE(993)] = 34229, + [SMALL_STATE(994)] = 34268, + [SMALL_STATE(995)] = 34307, + [SMALL_STATE(996)] = 34346, + [SMALL_STATE(997)] = 34385, + [SMALL_STATE(998)] = 34424, + [SMALL_STATE(999)] = 34463, + [SMALL_STATE(1000)] = 34502, + [SMALL_STATE(1001)] = 34541, + [SMALL_STATE(1002)] = 34580, + [SMALL_STATE(1003)] = 34619, + [SMALL_STATE(1004)] = 34658, + [SMALL_STATE(1005)] = 34697, + [SMALL_STATE(1006)] = 34736, + [SMALL_STATE(1007)] = 34775, + [SMALL_STATE(1008)] = 34814, + [SMALL_STATE(1009)] = 34855, + [SMALL_STATE(1010)] = 34894, + [SMALL_STATE(1011)] = 34933, + [SMALL_STATE(1012)] = 34972, + [SMALL_STATE(1013)] = 35011, + [SMALL_STATE(1014)] = 35050, + [SMALL_STATE(1015)] = 35089, + [SMALL_STATE(1016)] = 35128, + [SMALL_STATE(1017)] = 35167, + [SMALL_STATE(1018)] = 35206, + [SMALL_STATE(1019)] = 35245, + [SMALL_STATE(1020)] = 35284, + [SMALL_STATE(1021)] = 35323, + [SMALL_STATE(1022)] = 35362, + [SMALL_STATE(1023)] = 35409, + [SMALL_STATE(1024)] = 35448, + [SMALL_STATE(1025)] = 35487, + [SMALL_STATE(1026)] = 35526, + [SMALL_STATE(1027)] = 35588, + [SMALL_STATE(1028)] = 35639, + [SMALL_STATE(1029)] = 35698, + [SMALL_STATE(1030)] = 35757, + [SMALL_STATE(1031)] = 35808, + [SMALL_STATE(1032)] = 35883, + [SMALL_STATE(1033)] = 35942, + [SMALL_STATE(1034)] = 36001, + [SMALL_STATE(1035)] = 36072, + [SMALL_STATE(1036)] = 36147, + [SMALL_STATE(1037)] = 36222, + [SMALL_STATE(1038)] = 36281, + [SMALL_STATE(1039)] = 36332, + [SMALL_STATE(1040)] = 36391, + [SMALL_STATE(1041)] = 36442, + [SMALL_STATE(1042)] = 36515, + [SMALL_STATE(1043)] = 36574, + [SMALL_STATE(1044)] = 36621, + [SMALL_STATE(1045)] = 36680, + [SMALL_STATE(1046)] = 36731, + [SMALL_STATE(1047)] = 36806, + [SMALL_STATE(1048)] = 36878, + [SMALL_STATE(1049)] = 36950, + [SMALL_STATE(1050)] = 37022, + [SMALL_STATE(1051)] = 37094, + [SMALL_STATE(1052)] = 37166, + [SMALL_STATE(1053)] = 37238, + [SMALL_STATE(1054)] = 37310, + [SMALL_STATE(1055)] = 37382, + [SMALL_STATE(1056)] = 37454, + [SMALL_STATE(1057)] = 37526, + [SMALL_STATE(1058)] = 37598, + [SMALL_STATE(1059)] = 37668, + [SMALL_STATE(1060)] = 37740, + [SMALL_STATE(1061)] = 37810, + [SMALL_STATE(1062)] = 37882, + [SMALL_STATE(1063)] = 37954, + [SMALL_STATE(1064)] = 37998, + [SMALL_STATE(1065)] = 38070, + [SMALL_STATE(1066)] = 38142, + [SMALL_STATE(1067)] = 38214, + [SMALL_STATE(1068)] = 38286, + [SMALL_STATE(1069)] = 38358, + [SMALL_STATE(1070)] = 38430, + [SMALL_STATE(1071)] = 38502, + [SMALL_STATE(1072)] = 38574, + [SMALL_STATE(1073)] = 38646, + [SMALL_STATE(1074)] = 38718, + [SMALL_STATE(1075)] = 38790, + [SMALL_STATE(1076)] = 38862, + [SMALL_STATE(1077)] = 38934, + [SMALL_STATE(1078)] = 39006, + [SMALL_STATE(1079)] = 39078, + [SMALL_STATE(1080)] = 39150, + [SMALL_STATE(1081)] = 39222, + [SMALL_STATE(1082)] = 39294, + [SMALL_STATE(1083)] = 39366, + [SMALL_STATE(1084)] = 39438, + [SMALL_STATE(1085)] = 39510, + [SMALL_STATE(1086)] = 39582, + [SMALL_STATE(1087)] = 39654, + [SMALL_STATE(1088)] = 39726, + [SMALL_STATE(1089)] = 39798, + [SMALL_STATE(1090)] = 39870, + [SMALL_STATE(1091)] = 39942, + [SMALL_STATE(1092)] = 40014, + [SMALL_STATE(1093)] = 40086, + [SMALL_STATE(1094)] = 40158, + [SMALL_STATE(1095)] = 40230, + [SMALL_STATE(1096)] = 40302, + [SMALL_STATE(1097)] = 40374, + [SMALL_STATE(1098)] = 40446, + [SMALL_STATE(1099)] = 40518, + [SMALL_STATE(1100)] = 40590, + [SMALL_STATE(1101)] = 40662, + [SMALL_STATE(1102)] = 40734, + [SMALL_STATE(1103)] = 40806, + [SMALL_STATE(1104)] = 40878, + [SMALL_STATE(1105)] = 40948, + [SMALL_STATE(1106)] = 41020, + [SMALL_STATE(1107)] = 41092, + [SMALL_STATE(1108)] = 41164, + [SMALL_STATE(1109)] = 41236, + [SMALL_STATE(1110)] = 41308, + [SMALL_STATE(1111)] = 41380, + [SMALL_STATE(1112)] = 41452, + [SMALL_STATE(1113)] = 41522, + [SMALL_STATE(1114)] = 41594, + [SMALL_STATE(1115)] = 41666, + [SMALL_STATE(1116)] = 41738, + [SMALL_STATE(1117)] = 41808, + [SMALL_STATE(1118)] = 41880, + [SMALL_STATE(1119)] = 41952, + [SMALL_STATE(1120)] = 42024, + [SMALL_STATE(1121)] = 42096, + [SMALL_STATE(1122)] = 42168, + [SMALL_STATE(1123)] = 42240, + [SMALL_STATE(1124)] = 42312, + [SMALL_STATE(1125)] = 42384, + [SMALL_STATE(1126)] = 42454, + [SMALL_STATE(1127)] = 42509, + [SMALL_STATE(1128)] = 42578, + [SMALL_STATE(1129)] = 42647, + [SMALL_STATE(1130)] = 42716, + [SMALL_STATE(1131)] = 42785, + [SMALL_STATE(1132)] = 42840, + [SMALL_STATE(1133)] = 42909, + [SMALL_STATE(1134)] = 42978, + [SMALL_STATE(1135)] = 43047, + [SMALL_STATE(1136)] = 43100, + [SMALL_STATE(1137)] = 43169, + [SMALL_STATE(1138)] = 43238, + [SMALL_STATE(1139)] = 43307, + [SMALL_STATE(1140)] = 43362, + [SMALL_STATE(1141)] = 43431, + [SMALL_STATE(1142)] = 43500, + [SMALL_STATE(1143)] = 43569, + [SMALL_STATE(1144)] = 43638, + [SMALL_STATE(1145)] = 43705, + [SMALL_STATE(1146)] = 43774, + [SMALL_STATE(1147)] = 43835, + [SMALL_STATE(1148)] = 43904, + [SMALL_STATE(1149)] = 43959, + [SMALL_STATE(1150)] = 44028, + [SMALL_STATE(1151)] = 44097, + [SMALL_STATE(1152)] = 44166, + [SMALL_STATE(1153)] = 44235, + [SMALL_STATE(1154)] = 44298, + [SMALL_STATE(1155)] = 44355, + [SMALL_STATE(1156)] = 44414, + [SMALL_STATE(1157)] = 44483, + [SMALL_STATE(1158)] = 44536, + [SMALL_STATE(1159)] = 44587, + [SMALL_STATE(1160)] = 44656, + [SMALL_STATE(1161)] = 44725, + [SMALL_STATE(1162)] = 44794, + [SMALL_STATE(1163)] = 44863, + [SMALL_STATE(1164)] = 44932, + [SMALL_STATE(1165)] = 45001, + [SMALL_STATE(1166)] = 45064, + [SMALL_STATE(1167)] = 45113, + [SMALL_STATE(1168)] = 45178, + [SMALL_STATE(1169)] = 45230, + [SMALL_STATE(1170)] = 45282, + [SMALL_STATE(1171)] = 45334, + [SMALL_STATE(1172)] = 45386, + [SMALL_STATE(1173)] = 45438, + [SMALL_STATE(1174)] = 45476, + [SMALL_STATE(1175)] = 45510, + [SMALL_STATE(1176)] = 45562, + [SMALL_STATE(1177)] = 45614, + [SMALL_STATE(1178)] = 45680, + [SMALL_STATE(1179)] = 45718, + [SMALL_STATE(1180)] = 45770, + [SMALL_STATE(1181)] = 45822, + [SMALL_STATE(1182)] = 45874, + [SMALL_STATE(1183)] = 45926, + [SMALL_STATE(1184)] = 45978, + [SMALL_STATE(1185)] = 46030, + [SMALL_STATE(1186)] = 46082, + [SMALL_STATE(1187)] = 46134, + [SMALL_STATE(1188)] = 46186, + [SMALL_STATE(1189)] = 46238, + [SMALL_STATE(1190)] = 46276, + [SMALL_STATE(1191)] = 46328, + [SMALL_STATE(1192)] = 46380, + [SMALL_STATE(1193)] = 46432, + [SMALL_STATE(1194)] = 46484, + [SMALL_STATE(1195)] = 46536, + [SMALL_STATE(1196)] = 46588, + [SMALL_STATE(1197)] = 46640, + [SMALL_STATE(1198)] = 46678, + [SMALL_STATE(1199)] = 46730, + [SMALL_STATE(1200)] = 46782, + [SMALL_STATE(1201)] = 46834, + [SMALL_STATE(1202)] = 46886, + [SMALL_STATE(1203)] = 46938, + [SMALL_STATE(1204)] = 46990, + [SMALL_STATE(1205)] = 47042, + [SMALL_STATE(1206)] = 47094, + [SMALL_STATE(1207)] = 47146, + [SMALL_STATE(1208)] = 47182, + [SMALL_STATE(1209)] = 47234, + [SMALL_STATE(1210)] = 47286, + [SMALL_STATE(1211)] = 47329, + [SMALL_STATE(1212)] = 47370, + [SMALL_STATE(1213)] = 47411, + [SMALL_STATE(1214)] = 47449, + [SMALL_STATE(1215)] = 47484, + [SMALL_STATE(1216)] = 47519, + [SMALL_STATE(1217)] = 47554, + [SMALL_STATE(1218)] = 47588, + [SMALL_STATE(1219)] = 47634, + [SMALL_STATE(1220)] = 47680, + [SMALL_STATE(1221)] = 47710, + [SMALL_STATE(1222)] = 47740, + [SMALL_STATE(1223)] = 47786, + [SMALL_STATE(1224)] = 47832, + [SMALL_STATE(1225)] = 47878, + [SMALL_STATE(1226)] = 47924, + [SMALL_STATE(1227)] = 47967, + [SMALL_STATE(1228)] = 48010, + [SMALL_STATE(1229)] = 48065, + [SMALL_STATE(1230)] = 48098, + [SMALL_STATE(1231)] = 48141, + [SMALL_STATE(1232)] = 48184, + [SMALL_STATE(1233)] = 48227, + [SMALL_STATE(1234)] = 48270, + [SMALL_STATE(1235)] = 48307, + [SMALL_STATE(1236)] = 48350, + [SMALL_STATE(1237)] = 48405, + [SMALL_STATE(1238)] = 48448, + [SMALL_STATE(1239)] = 48488, + [SMALL_STATE(1240)] = 48528, + [SMALL_STATE(1241)] = 48568, + [SMALL_STATE(1242)] = 48608, + [SMALL_STATE(1243)] = 48648, + [SMALL_STATE(1244)] = 48688, + [SMALL_STATE(1245)] = 48728, + [SMALL_STATE(1246)] = 48756, + [SMALL_STATE(1247)] = 48796, + [SMALL_STATE(1248)] = 48836, + [SMALL_STATE(1249)] = 48876, + [SMALL_STATE(1250)] = 48916, + [SMALL_STATE(1251)] = 48956, + [SMALL_STATE(1252)] = 48996, + [SMALL_STATE(1253)] = 49036, + [SMALL_STATE(1254)] = 49076, + [SMALL_STATE(1255)] = 49116, + [SMALL_STATE(1256)] = 49156, + [SMALL_STATE(1257)] = 49196, + [SMALL_STATE(1258)] = 49224, + [SMALL_STATE(1259)] = 49252, + [SMALL_STATE(1260)] = 49280, + [SMALL_STATE(1261)] = 49312, + [SMALL_STATE(1262)] = 49340, + [SMALL_STATE(1263)] = 49388, + [SMALL_STATE(1264)] = 49434, + [SMALL_STATE(1265)] = 49480, + [SMALL_STATE(1266)] = 49520, + [SMALL_STATE(1267)] = 49560, + [SMALL_STATE(1268)] = 49600, + [SMALL_STATE(1269)] = 49644, + [SMALL_STATE(1270)] = 49686, + [SMALL_STATE(1271)] = 49726, + [SMALL_STATE(1272)] = 49762, + [SMALL_STATE(1273)] = 49796, + [SMALL_STATE(1274)] = 49836, + [SMALL_STATE(1275)] = 49876, + [SMALL_STATE(1276)] = 49916, + [SMALL_STATE(1277)] = 49956, + [SMALL_STATE(1278)] = 49996, + [SMALL_STATE(1279)] = 50024, + [SMALL_STATE(1280)] = 50052, + [SMALL_STATE(1281)] = 50080, + [SMALL_STATE(1282)] = 50120, + [SMALL_STATE(1283)] = 50160, + [SMALL_STATE(1284)] = 50200, + [SMALL_STATE(1285)] = 50240, + [SMALL_STATE(1286)] = 50290, + [SMALL_STATE(1287)] = 50330, + [SMALL_STATE(1288)] = 50370, + [SMALL_STATE(1289)] = 50410, + [SMALL_STATE(1290)] = 50450, + [SMALL_STATE(1291)] = 50490, + [SMALL_STATE(1292)] = 50518, + [SMALL_STATE(1293)] = 50566, + [SMALL_STATE(1294)] = 50606, + [SMALL_STATE(1295)] = 50634, + [SMALL_STATE(1296)] = 50661, + [SMALL_STATE(1297)] = 50700, + [SMALL_STATE(1298)] = 50745, + [SMALL_STATE(1299)] = 50790, + [SMALL_STATE(1300)] = 50817, + [SMALL_STATE(1301)] = 50844, + [SMALL_STATE(1302)] = 50871, + [SMALL_STATE(1303)] = 50916, + [SMALL_STATE(1304)] = 50943, + [SMALL_STATE(1305)] = 50988, + [SMALL_STATE(1306)] = 51033, + [SMALL_STATE(1307)] = 51062, + [SMALL_STATE(1308)] = 51089, + [SMALL_STATE(1309)] = 51134, + [SMALL_STATE(1310)] = 51183, + [SMALL_STATE(1311)] = 51228, + [SMALL_STATE(1312)] = 51277, + [SMALL_STATE(1313)] = 51322, + [SMALL_STATE(1314)] = 51349, + [SMALL_STATE(1315)] = 51376, + [SMALL_STATE(1316)] = 51419, + [SMALL_STATE(1317)] = 51446, + [SMALL_STATE(1318)] = 51491, + [SMALL_STATE(1319)] = 51536, + [SMALL_STATE(1320)] = 51581, + [SMALL_STATE(1321)] = 51612, + [SMALL_STATE(1322)] = 51657, + [SMALL_STATE(1323)] = 51698, + [SMALL_STATE(1324)] = 51731, + [SMALL_STATE(1325)] = 51766, + [SMALL_STATE(1326)] = 51803, + [SMALL_STATE(1327)] = 51830, + [SMALL_STATE(1328)] = 51864, + [SMALL_STATE(1329)] = 51902, + [SMALL_STATE(1330)] = 51940, + [SMALL_STATE(1331)] = 51974, + [SMALL_STATE(1332)] = 52012, + [SMALL_STATE(1333)] = 52050, + [SMALL_STATE(1334)] = 52088, + [SMALL_STATE(1335)] = 52126, + [SMALL_STATE(1336)] = 52167, + [SMALL_STATE(1337)] = 52208, + [SMALL_STATE(1338)] = 52249, + [SMALL_STATE(1339)] = 52290, + [SMALL_STATE(1340)] = 52322, + [SMALL_STATE(1341)] = 52354, + [SMALL_STATE(1342)] = 52392, + [SMALL_STATE(1343)] = 52424, + [SMALL_STATE(1344)] = 52448, + [SMALL_STATE(1345)] = 52480, + [SMALL_STATE(1346)] = 52512, + [SMALL_STATE(1347)] = 52544, + [SMALL_STATE(1348)] = 52582, + [SMALL_STATE(1349)] = 52614, + [SMALL_STATE(1350)] = 52652, + [SMALL_STATE(1351)] = 52684, + [SMALL_STATE(1352)] = 52716, + [SMALL_STATE(1353)] = 52748, + [SMALL_STATE(1354)] = 52786, + [SMALL_STATE(1355)] = 52818, + [SMALL_STATE(1356)] = 52856, + [SMALL_STATE(1357)] = 52888, + [SMALL_STATE(1358)] = 52911, + [SMALL_STATE(1359)] = 52940, + [SMALL_STATE(1360)] = 52969, + [SMALL_STATE(1361)] = 52998, + [SMALL_STATE(1362)] = 53025, + [SMALL_STATE(1363)] = 53052, + [SMALL_STATE(1364)] = 53079, + [SMALL_STATE(1365)] = 53102, + [SMALL_STATE(1366)] = 53131, + [SMALL_STATE(1367)] = 53160, + [SMALL_STATE(1368)] = 53187, + [SMALL_STATE(1369)] = 53216, + [SMALL_STATE(1370)] = 53243, + [SMALL_STATE(1371)] = 53270, + [SMALL_STATE(1372)] = 53301, + [SMALL_STATE(1373)] = 53328, + [SMALL_STATE(1374)] = 53355, + [SMALL_STATE(1375)] = 53382, + [SMALL_STATE(1376)] = 53411, + [SMALL_STATE(1377)] = 53438, + [SMALL_STATE(1378)] = 53461, + [SMALL_STATE(1379)] = 53490, + [SMALL_STATE(1380)] = 53514, + [SMALL_STATE(1381)] = 53546, + [SMALL_STATE(1382)] = 53578, + [SMALL_STATE(1383)] = 53610, + [SMALL_STATE(1384)] = 53632, + [SMALL_STATE(1385)] = 53650, + [SMALL_STATE(1386)] = 53668, + [SMALL_STATE(1387)] = 53700, + [SMALL_STATE(1388)] = 53732, + [SMALL_STATE(1389)] = 53754, + [SMALL_STATE(1390)] = 53772, + [SMALL_STATE(1391)] = 53804, + [SMALL_STATE(1392)] = 53828, + [SMALL_STATE(1393)] = 53857, + [SMALL_STATE(1394)] = 53882, + [SMALL_STATE(1395)] = 53903, + [SMALL_STATE(1396)] = 53932, + [SMALL_STATE(1397)] = 53961, + [SMALL_STATE(1398)] = 53990, + [SMALL_STATE(1399)] = 54011, + [SMALL_STATE(1400)] = 54040, + [SMALL_STATE(1401)] = 54069, + [SMALL_STATE(1402)] = 54098, + [SMALL_STATE(1403)] = 54127, + [SMALL_STATE(1404)] = 54156, + [SMALL_STATE(1405)] = 54185, + [SMALL_STATE(1406)] = 54214, + [SMALL_STATE(1407)] = 54243, + [SMALL_STATE(1408)] = 54272, + [SMALL_STATE(1409)] = 54297, + [SMALL_STATE(1410)] = 54326, + [SMALL_STATE(1411)] = 54355, + [SMALL_STATE(1412)] = 54380, + [SMALL_STATE(1413)] = 54401, + [SMALL_STATE(1414)] = 54430, + [SMALL_STATE(1415)] = 54459, + [SMALL_STATE(1416)] = 54480, + [SMALL_STATE(1417)] = 54509, + [SMALL_STATE(1418)] = 54530, + [SMALL_STATE(1419)] = 54559, + [SMALL_STATE(1420)] = 54584, + [SMALL_STATE(1421)] = 54611, + [SMALL_STATE(1422)] = 54640, + [SMALL_STATE(1423)] = 54656, + [SMALL_STATE(1424)] = 54674, + [SMALL_STATE(1425)] = 54700, + [SMALL_STATE(1426)] = 54716, + [SMALL_STATE(1427)] = 54732, + [SMALL_STATE(1428)] = 54758, + [SMALL_STATE(1429)] = 54774, + [SMALL_STATE(1430)] = 54790, + [SMALL_STATE(1431)] = 54810, + [SMALL_STATE(1432)] = 54834, + [SMALL_STATE(1433)] = 54860, + [SMALL_STATE(1434)] = 54876, + [SMALL_STATE(1435)] = 54892, + [SMALL_STATE(1436)] = 54908, + [SMALL_STATE(1437)] = 54924, + [SMALL_STATE(1438)] = 54940, + [SMALL_STATE(1439)] = 54966, + [SMALL_STATE(1440)] = 54986, + [SMALL_STATE(1441)] = 55010, + [SMALL_STATE(1442)] = 55026, + [SMALL_STATE(1443)] = 55042, + [SMALL_STATE(1444)] = 55062, + [SMALL_STATE(1445)] = 55078, + [SMALL_STATE(1446)] = 55104, + [SMALL_STATE(1447)] = 55120, + [SMALL_STATE(1448)] = 55143, + [SMALL_STATE(1449)] = 55166, + [SMALL_STATE(1450)] = 55183, + [SMALL_STATE(1451)] = 55200, + [SMALL_STATE(1452)] = 55223, + [SMALL_STATE(1453)] = 55241, + [SMALL_STATE(1454)] = 55255, + [SMALL_STATE(1455)] = 55269, + [SMALL_STATE(1456)] = 55285, + [SMALL_STATE(1457)] = 55303, + [SMALL_STATE(1458)] = 55321, + [SMALL_STATE(1459)] = 55339, + [SMALL_STATE(1460)] = 55357, + [SMALL_STATE(1461)] = 55371, + [SMALL_STATE(1462)] = 55385, + [SMALL_STATE(1463)] = 55399, + [SMALL_STATE(1464)] = 55413, + [SMALL_STATE(1465)] = 55427, + [SMALL_STATE(1466)] = 55445, + [SMALL_STATE(1467)] = 55459, + [SMALL_STATE(1468)] = 55473, + [SMALL_STATE(1469)] = 55489, + [SMALL_STATE(1470)] = 55507, + [SMALL_STATE(1471)] = 55525, + [SMALL_STATE(1472)] = 55541, + [SMALL_STATE(1473)] = 55555, + [SMALL_STATE(1474)] = 55569, + [SMALL_STATE(1475)] = 55583, + [SMALL_STATE(1476)] = 55594, + [SMALL_STATE(1477)] = 55605, + [SMALL_STATE(1478)] = 55616, + [SMALL_STATE(1479)] = 55627, + [SMALL_STATE(1480)] = 55646, + [SMALL_STATE(1481)] = 55657, + [SMALL_STATE(1482)] = 55668, + [SMALL_STATE(1483)] = 55679, + [SMALL_STATE(1484)] = 55690, + [SMALL_STATE(1485)] = 55709, + [SMALL_STATE(1486)] = 55726, + [SMALL_STATE(1487)] = 55745, + [SMALL_STATE(1488)] = 55764, + [SMALL_STATE(1489)] = 55783, + [SMALL_STATE(1490)] = 55802, + [SMALL_STATE(1491)] = 55813, + [SMALL_STATE(1492)] = 55832, + [SMALL_STATE(1493)] = 55851, + [SMALL_STATE(1494)] = 55870, + [SMALL_STATE(1495)] = 55889, + [SMALL_STATE(1496)] = 55908, + [SMALL_STATE(1497)] = 55927, + [SMALL_STATE(1498)] = 55938, + [SMALL_STATE(1499)] = 55955, + [SMALL_STATE(1500)] = 55966, + [SMALL_STATE(1501)] = 55985, + [SMALL_STATE(1502)] = 55996, + [SMALL_STATE(1503)] = 56015, + [SMALL_STATE(1504)] = 56031, + [SMALL_STATE(1505)] = 56047, + [SMALL_STATE(1506)] = 56063, + [SMALL_STATE(1507)] = 56079, + [SMALL_STATE(1508)] = 56093, + [SMALL_STATE(1509)] = 56109, + [SMALL_STATE(1510)] = 56125, + [SMALL_STATE(1511)] = 56139, + [SMALL_STATE(1512)] = 56155, + [SMALL_STATE(1513)] = 56165, + [SMALL_STATE(1514)] = 56179, + [SMALL_STATE(1515)] = 56195, + [SMALL_STATE(1516)] = 56209, + [SMALL_STATE(1517)] = 56223, + [SMALL_STATE(1518)] = 56237, + [SMALL_STATE(1519)] = 56251, + [SMALL_STATE(1520)] = 56267, + [SMALL_STATE(1521)] = 56283, + [SMALL_STATE(1522)] = 56297, + [SMALL_STATE(1523)] = 56313, + [SMALL_STATE(1524)] = 56327, + [SMALL_STATE(1525)] = 56343, + [SMALL_STATE(1526)] = 56359, + [SMALL_STATE(1527)] = 56375, + [SMALL_STATE(1528)] = 56389, + [SMALL_STATE(1529)] = 56405, + [SMALL_STATE(1530)] = 56419, + [SMALL_STATE(1531)] = 56435, + [SMALL_STATE(1532)] = 56451, + [SMALL_STATE(1533)] = 56467, + [SMALL_STATE(1534)] = 56480, + [SMALL_STATE(1535)] = 56493, + [SMALL_STATE(1536)] = 56506, + [SMALL_STATE(1537)] = 56519, + [SMALL_STATE(1538)] = 56532, + [SMALL_STATE(1539)] = 56545, + [SMALL_STATE(1540)] = 56558, + [SMALL_STATE(1541)] = 56571, + [SMALL_STATE(1542)] = 56584, + [SMALL_STATE(1543)] = 56597, + [SMALL_STATE(1544)] = 56606, + [SMALL_STATE(1545)] = 56619, + [SMALL_STATE(1546)] = 56632, + [SMALL_STATE(1547)] = 56641, + [SMALL_STATE(1548)] = 56654, + [SMALL_STATE(1549)] = 56667, + [SMALL_STATE(1550)] = 56680, + [SMALL_STATE(1551)] = 56693, + [SMALL_STATE(1552)] = 56706, + [SMALL_STATE(1553)] = 56719, + [SMALL_STATE(1554)] = 56732, + [SMALL_STATE(1555)] = 56745, + [SMALL_STATE(1556)] = 56758, + [SMALL_STATE(1557)] = 56771, + [SMALL_STATE(1558)] = 56782, + [SMALL_STATE(1559)] = 56795, + [SMALL_STATE(1560)] = 56808, + [SMALL_STATE(1561)] = 56821, + [SMALL_STATE(1562)] = 56834, + [SMALL_STATE(1563)] = 56847, + [SMALL_STATE(1564)] = 56860, + [SMALL_STATE(1565)] = 56869, + [SMALL_STATE(1566)] = 56882, + [SMALL_STATE(1567)] = 56895, + [SMALL_STATE(1568)] = 56908, + [SMALL_STATE(1569)] = 56921, + [SMALL_STATE(1570)] = 56934, + [SMALL_STATE(1571)] = 56947, + [SMALL_STATE(1572)] = 56960, + [SMALL_STATE(1573)] = 56973, + [SMALL_STATE(1574)] = 56986, + [SMALL_STATE(1575)] = 56999, + [SMALL_STATE(1576)] = 57012, + [SMALL_STATE(1577)] = 57025, + [SMALL_STATE(1578)] = 57038, + [SMALL_STATE(1579)] = 57051, + [SMALL_STATE(1580)] = 57064, + [SMALL_STATE(1581)] = 57077, + [SMALL_STATE(1582)] = 57090, + [SMALL_STATE(1583)] = 57103, + [SMALL_STATE(1584)] = 57114, + [SMALL_STATE(1585)] = 57127, + [SMALL_STATE(1586)] = 57140, + [SMALL_STATE(1587)] = 57153, + [SMALL_STATE(1588)] = 57166, + [SMALL_STATE(1589)] = 57179, + [SMALL_STATE(1590)] = 57192, + [SMALL_STATE(1591)] = 57201, + [SMALL_STATE(1592)] = 57210, + [SMALL_STATE(1593)] = 57223, + [SMALL_STATE(1594)] = 57236, + [SMALL_STATE(1595)] = 57249, + [SMALL_STATE(1596)] = 57262, + [SMALL_STATE(1597)] = 57275, + [SMALL_STATE(1598)] = 57288, + [SMALL_STATE(1599)] = 57301, + [SMALL_STATE(1600)] = 57310, + [SMALL_STATE(1601)] = 57323, + [SMALL_STATE(1602)] = 57336, + [SMALL_STATE(1603)] = 57349, + [SMALL_STATE(1604)] = 57362, + [SMALL_STATE(1605)] = 57375, + [SMALL_STATE(1606)] = 57388, + [SMALL_STATE(1607)] = 57397, + [SMALL_STATE(1608)] = 57410, + [SMALL_STATE(1609)] = 57423, + [SMALL_STATE(1610)] = 57436, + [SMALL_STATE(1611)] = 57449, + [SMALL_STATE(1612)] = 57458, + [SMALL_STATE(1613)] = 57471, + [SMALL_STATE(1614)] = 57484, + [SMALL_STATE(1615)] = 57497, + [SMALL_STATE(1616)] = 57510, + [SMALL_STATE(1617)] = 57523, + [SMALL_STATE(1618)] = 57536, + [SMALL_STATE(1619)] = 57549, + [SMALL_STATE(1620)] = 57562, + [SMALL_STATE(1621)] = 57575, + [SMALL_STATE(1622)] = 57588, + [SMALL_STATE(1623)] = 57601, + [SMALL_STATE(1624)] = 57610, + [SMALL_STATE(1625)] = 57623, + [SMALL_STATE(1626)] = 57636, + [SMALL_STATE(1627)] = 57645, + [SMALL_STATE(1628)] = 57658, + [SMALL_STATE(1629)] = 57671, + [SMALL_STATE(1630)] = 57684, + [SMALL_STATE(1631)] = 57697, + [SMALL_STATE(1632)] = 57710, + [SMALL_STATE(1633)] = 57723, + [SMALL_STATE(1634)] = 57736, + [SMALL_STATE(1635)] = 57749, + [SMALL_STATE(1636)] = 57762, + [SMALL_STATE(1637)] = 57775, + [SMALL_STATE(1638)] = 57785, + [SMALL_STATE(1639)] = 57793, + [SMALL_STATE(1640)] = 57803, + [SMALL_STATE(1641)] = 57813, + [SMALL_STATE(1642)] = 57821, + [SMALL_STATE(1643)] = 57831, + [SMALL_STATE(1644)] = 57841, + [SMALL_STATE(1645)] = 57851, + [SMALL_STATE(1646)] = 57861, + [SMALL_STATE(1647)] = 57869, + [SMALL_STATE(1648)] = 57877, + [SMALL_STATE(1649)] = 57885, + [SMALL_STATE(1650)] = 57895, + [SMALL_STATE(1651)] = 57905, + [SMALL_STATE(1652)] = 57913, + [SMALL_STATE(1653)] = 57923, + [SMALL_STATE(1654)] = 57931, + [SMALL_STATE(1655)] = 57939, + [SMALL_STATE(1656)] = 57947, + [SMALL_STATE(1657)] = 57957, + [SMALL_STATE(1658)] = 57965, + [SMALL_STATE(1659)] = 57975, + [SMALL_STATE(1660)] = 57985, + [SMALL_STATE(1661)] = 57995, + [SMALL_STATE(1662)] = 58003, + [SMALL_STATE(1663)] = 58013, + [SMALL_STATE(1664)] = 58023, + [SMALL_STATE(1665)] = 58031, + [SMALL_STATE(1666)] = 58041, + [SMALL_STATE(1667)] = 58049, + [SMALL_STATE(1668)] = 58059, + [SMALL_STATE(1669)] = 58069, + [SMALL_STATE(1670)] = 58079, + [SMALL_STATE(1671)] = 58089, + [SMALL_STATE(1672)] = 58099, + [SMALL_STATE(1673)] = 58109, + [SMALL_STATE(1674)] = 58117, + [SMALL_STATE(1675)] = 58125, + [SMALL_STATE(1676)] = 58133, + [SMALL_STATE(1677)] = 58143, + [SMALL_STATE(1678)] = 58153, + [SMALL_STATE(1679)] = 58163, + [SMALL_STATE(1680)] = 58173, + [SMALL_STATE(1681)] = 58181, + [SMALL_STATE(1682)] = 58189, + [SMALL_STATE(1683)] = 58199, + [SMALL_STATE(1684)] = 58209, + [SMALL_STATE(1685)] = 58219, + [SMALL_STATE(1686)] = 58229, + [SMALL_STATE(1687)] = 58239, + [SMALL_STATE(1688)] = 58249, + [SMALL_STATE(1689)] = 58259, + [SMALL_STATE(1690)] = 58267, + [SMALL_STATE(1691)] = 58277, + [SMALL_STATE(1692)] = 58287, + [SMALL_STATE(1693)] = 58295, + [SMALL_STATE(1694)] = 58305, + [SMALL_STATE(1695)] = 58315, + [SMALL_STATE(1696)] = 58325, + [SMALL_STATE(1697)] = 58335, + [SMALL_STATE(1698)] = 58345, + [SMALL_STATE(1699)] = 58355, + [SMALL_STATE(1700)] = 58363, + [SMALL_STATE(1701)] = 58373, + [SMALL_STATE(1702)] = 58383, + [SMALL_STATE(1703)] = 58393, + [SMALL_STATE(1704)] = 58403, + [SMALL_STATE(1705)] = 58413, + [SMALL_STATE(1706)] = 58423, + [SMALL_STATE(1707)] = 58433, + [SMALL_STATE(1708)] = 58443, + [SMALL_STATE(1709)] = 58453, + [SMALL_STATE(1710)] = 58463, + [SMALL_STATE(1711)] = 58473, + [SMALL_STATE(1712)] = 58483, + [SMALL_STATE(1713)] = 58493, + [SMALL_STATE(1714)] = 58500, + [SMALL_STATE(1715)] = 58507, + [SMALL_STATE(1716)] = 58514, + [SMALL_STATE(1717)] = 58521, + [SMALL_STATE(1718)] = 58528, + [SMALL_STATE(1719)] = 58535, + [SMALL_STATE(1720)] = 58542, + [SMALL_STATE(1721)] = 58549, + [SMALL_STATE(1722)] = 58556, + [SMALL_STATE(1723)] = 58563, + [SMALL_STATE(1724)] = 58570, + [SMALL_STATE(1725)] = 58577, + [SMALL_STATE(1726)] = 58584, + [SMALL_STATE(1727)] = 58591, + [SMALL_STATE(1728)] = 58598, + [SMALL_STATE(1729)] = 58605, + [SMALL_STATE(1730)] = 58612, + [SMALL_STATE(1731)] = 58619, + [SMALL_STATE(1732)] = 58626, + [SMALL_STATE(1733)] = 58633, + [SMALL_STATE(1734)] = 58640, + [SMALL_STATE(1735)] = 58647, + [SMALL_STATE(1736)] = 58654, + [SMALL_STATE(1737)] = 58661, + [SMALL_STATE(1738)] = 58668, + [SMALL_STATE(1739)] = 58675, + [SMALL_STATE(1740)] = 58682, + [SMALL_STATE(1741)] = 58689, + [SMALL_STATE(1742)] = 58696, + [SMALL_STATE(1743)] = 58703, + [SMALL_STATE(1744)] = 58710, + [SMALL_STATE(1745)] = 58717, + [SMALL_STATE(1746)] = 58724, + [SMALL_STATE(1747)] = 58731, + [SMALL_STATE(1748)] = 58738, + [SMALL_STATE(1749)] = 58745, + [SMALL_STATE(1750)] = 58752, + [SMALL_STATE(1751)] = 58759, + [SMALL_STATE(1752)] = 58766, + [SMALL_STATE(1753)] = 58773, + [SMALL_STATE(1754)] = 58780, + [SMALL_STATE(1755)] = 58787, + [SMALL_STATE(1756)] = 58794, + [SMALL_STATE(1757)] = 58801, + [SMALL_STATE(1758)] = 58808, + [SMALL_STATE(1759)] = 58815, + [SMALL_STATE(1760)] = 58822, + [SMALL_STATE(1761)] = 58829, + [SMALL_STATE(1762)] = 58836, + [SMALL_STATE(1763)] = 58843, + [SMALL_STATE(1764)] = 58850, + [SMALL_STATE(1765)] = 58857, + [SMALL_STATE(1766)] = 58864, + [SMALL_STATE(1767)] = 58871, + [SMALL_STATE(1768)] = 58878, + [SMALL_STATE(1769)] = 58885, + [SMALL_STATE(1770)] = 58892, + [SMALL_STATE(1771)] = 58899, + [SMALL_STATE(1772)] = 58906, + [SMALL_STATE(1773)] = 58913, + [SMALL_STATE(1774)] = 58920, + [SMALL_STATE(1775)] = 58927, + [SMALL_STATE(1776)] = 58934, + [SMALL_STATE(1777)] = 58941, + [SMALL_STATE(1778)] = 58948, + [SMALL_STATE(1779)] = 58955, + [SMALL_STATE(1780)] = 58962, + [SMALL_STATE(1781)] = 58969, + [SMALL_STATE(1782)] = 58976, + [SMALL_STATE(1783)] = 58983, + [SMALL_STATE(1784)] = 58990, + [SMALL_STATE(1785)] = 58997, + [SMALL_STATE(1786)] = 59004, + [SMALL_STATE(1787)] = 59011, + [SMALL_STATE(1788)] = 59018, + [SMALL_STATE(1789)] = 59025, + [SMALL_STATE(1790)] = 59032, + [SMALL_STATE(1791)] = 59039, + [SMALL_STATE(1792)] = 59046, + [SMALL_STATE(1793)] = 59053, + [SMALL_STATE(1794)] = 59060, + [SMALL_STATE(1795)] = 59067, + [SMALL_STATE(1796)] = 59074, + [SMALL_STATE(1797)] = 59081, + [SMALL_STATE(1798)] = 59088, + [SMALL_STATE(1799)] = 59095, + [SMALL_STATE(1800)] = 59102, + [SMALL_STATE(1801)] = 59109, + [SMALL_STATE(1802)] = 59116, + [SMALL_STATE(1803)] = 59123, + [SMALL_STATE(1804)] = 59130, + [SMALL_STATE(1805)] = 59137, + [SMALL_STATE(1806)] = 59144, + [SMALL_STATE(1807)] = 59151, + [SMALL_STATE(1808)] = 59158, + [SMALL_STATE(1809)] = 59165, + [SMALL_STATE(1810)] = 59172, + [SMALL_STATE(1811)] = 59179, + [SMALL_STATE(1812)] = 59186, + [SMALL_STATE(1813)] = 59193, + [SMALL_STATE(1814)] = 59200, + [SMALL_STATE(1815)] = 59207, + [SMALL_STATE(1816)] = 59214, + [SMALL_STATE(1817)] = 59221, + [SMALL_STATE(1818)] = 59228, + [SMALL_STATE(1819)] = 59235, + [SMALL_STATE(1820)] = 59242, + [SMALL_STATE(1821)] = 59249, + [SMALL_STATE(1822)] = 59256, + [SMALL_STATE(1823)] = 59263, + [SMALL_STATE(1824)] = 59270, + [SMALL_STATE(1825)] = 59277, + [SMALL_STATE(1826)] = 59284, + [SMALL_STATE(1827)] = 59291, + [SMALL_STATE(1828)] = 59298, + [SMALL_STATE(1829)] = 59305, + [SMALL_STATE(1830)] = 59312, + [SMALL_STATE(1831)] = 59319, + [SMALL_STATE(1832)] = 59326, + [SMALL_STATE(1833)] = 59333, + [SMALL_STATE(1834)] = 59340, + [SMALL_STATE(1835)] = 59347, + [SMALL_STATE(1836)] = 59354, + [SMALL_STATE(1837)] = 59361, + [SMALL_STATE(1838)] = 59368, + [SMALL_STATE(1839)] = 59375, + [SMALL_STATE(1840)] = 59382, + [SMALL_STATE(1841)] = 59389, + [SMALL_STATE(1842)] = 59396, + [SMALL_STATE(1843)] = 59403, + [SMALL_STATE(1844)] = 59410, + [SMALL_STATE(1845)] = 59417, + [SMALL_STATE(1846)] = 59424, + [SMALL_STATE(1847)] = 59431, + [SMALL_STATE(1848)] = 59438, + [SMALL_STATE(1849)] = 59445, + [SMALL_STATE(1850)] = 59452, + [SMALL_STATE(1851)] = 59459, + [SMALL_STATE(1852)] = 59466, + [SMALL_STATE(1853)] = 59473, + [SMALL_STATE(1854)] = 59480, + [SMALL_STATE(1855)] = 59487, + [SMALL_STATE(1856)] = 59494, + [SMALL_STATE(1857)] = 59501, + [SMALL_STATE(1858)] = 59508, + [SMALL_STATE(1859)] = 59515, + [SMALL_STATE(1860)] = 59522, + [SMALL_STATE(1861)] = 59529, + [SMALL_STATE(1862)] = 59536, + [SMALL_STATE(1863)] = 59543, + [SMALL_STATE(1864)] = 59550, + [SMALL_STATE(1865)] = 59557, + [SMALL_STATE(1866)] = 59564, + [SMALL_STATE(1867)] = 59571, + [SMALL_STATE(1868)] = 59578, + [SMALL_STATE(1869)] = 59585, + [SMALL_STATE(1870)] = 59592, + [SMALL_STATE(1871)] = 59599, + [SMALL_STATE(1872)] = 59606, + [SMALL_STATE(1873)] = 59613, + [SMALL_STATE(1874)] = 59620, + [SMALL_STATE(1875)] = 59627, + [SMALL_STATE(1876)] = 59634, + [SMALL_STATE(1877)] = 59641, + [SMALL_STATE(1878)] = 59648, + [SMALL_STATE(1879)] = 59655, + [SMALL_STATE(1880)] = 59662, + [SMALL_STATE(1881)] = 59669, + [SMALL_STATE(1882)] = 59676, + [SMALL_STATE(1883)] = 59683, + [SMALL_STATE(1884)] = 59690, + [SMALL_STATE(1885)] = 59697, + [SMALL_STATE(1886)] = 59704, + [SMALL_STATE(1887)] = 59711, + [SMALL_STATE(1888)] = 59718, + [SMALL_STATE(1889)] = 59725, + [SMALL_STATE(1890)] = 59732, + [SMALL_STATE(1891)] = 59739, + [SMALL_STATE(1892)] = 59746, + [SMALL_STATE(1893)] = 59753, + [SMALL_STATE(1894)] = 59760, + [SMALL_STATE(1895)] = 59767, + [SMALL_STATE(1896)] = 59774, + [SMALL_STATE(1897)] = 59781, + [SMALL_STATE(1898)] = 59788, + [SMALL_STATE(1899)] = 59795, + [SMALL_STATE(1900)] = 59802, + [SMALL_STATE(1901)] = 59809, + [SMALL_STATE(1902)] = 59816, + [SMALL_STATE(1903)] = 59823, + [SMALL_STATE(1904)] = 59830, + [SMALL_STATE(1905)] = 59837, + [SMALL_STATE(1906)] = 59844, + [SMALL_STATE(1907)] = 59851, + [SMALL_STATE(1908)] = 59858, + [SMALL_STATE(1909)] = 59865, + [SMALL_STATE(1910)] = 59872, + [SMALL_STATE(1911)] = 59879, + [SMALL_STATE(1912)] = 59886, + [SMALL_STATE(1913)] = 59893, + [SMALL_STATE(1914)] = 59900, + [SMALL_STATE(1915)] = 59907, + [SMALL_STATE(1916)] = 59914, + [SMALL_STATE(1917)] = 59921, + [SMALL_STATE(1918)] = 59928, + [SMALL_STATE(1919)] = 59935, + [SMALL_STATE(1920)] = 59942, + [SMALL_STATE(1921)] = 59949, + [SMALL_STATE(1922)] = 59956, + [SMALL_STATE(1923)] = 59963, + [SMALL_STATE(1924)] = 59970, + [SMALL_STATE(1925)] = 59977, + [SMALL_STATE(1926)] = 59984, + [SMALL_STATE(1927)] = 59991, + [SMALL_STATE(1928)] = 59998, + [SMALL_STATE(1929)] = 60005, + [SMALL_STATE(1930)] = 60012, + [SMALL_STATE(1931)] = 60019, + [SMALL_STATE(1932)] = 60026, + [SMALL_STATE(1933)] = 60033, + [SMALL_STATE(1934)] = 60040, + [SMALL_STATE(1935)] = 60047, + [SMALL_STATE(1936)] = 60054, + [SMALL_STATE(1937)] = 60061, + [SMALL_STATE(1938)] = 60068, + [SMALL_STATE(1939)] = 60075, + [SMALL_STATE(1940)] = 60082, + [SMALL_STATE(1941)] = 60089, + [SMALL_STATE(1942)] = 60096, + [SMALL_STATE(1943)] = 60103, + [SMALL_STATE(1944)] = 60110, + [SMALL_STATE(1945)] = 60117, + [SMALL_STATE(1946)] = 60124, + [SMALL_STATE(1947)] = 60131, + [SMALL_STATE(1948)] = 60138, + [SMALL_STATE(1949)] = 60145, + [SMALL_STATE(1950)] = 60152, + [SMALL_STATE(1951)] = 60159, + [SMALL_STATE(1952)] = 60166, + [SMALL_STATE(1953)] = 60173, + [SMALL_STATE(1954)] = 60180, + [SMALL_STATE(1955)] = 60187, + [SMALL_STATE(1956)] = 60194, + [SMALL_STATE(1957)] = 60201, + [SMALL_STATE(1958)] = 60208, + [SMALL_STATE(1959)] = 60215, + [SMALL_STATE(1960)] = 60222, + [SMALL_STATE(1961)] = 60229, + [SMALL_STATE(1962)] = 60236, + [SMALL_STATE(1963)] = 60243, + [SMALL_STATE(1964)] = 60250, + [SMALL_STATE(1965)] = 60257, + [SMALL_STATE(1966)] = 60264, + [SMALL_STATE(1967)] = 60271, + [SMALL_STATE(1968)] = 60278, + [SMALL_STATE(1969)] = 60285, + [SMALL_STATE(1970)] = 60292, + [SMALL_STATE(1971)] = 60299, + [SMALL_STATE(1972)] = 60306, + [SMALL_STATE(1973)] = 60313, + [SMALL_STATE(1974)] = 60320, + [SMALL_STATE(1975)] = 60327, + [SMALL_STATE(1976)] = 60334, + [SMALL_STATE(1977)] = 60341, + [SMALL_STATE(1978)] = 60348, + [SMALL_STATE(1979)] = 60355, + [SMALL_STATE(1980)] = 60362, + [SMALL_STATE(1981)] = 60369, + [SMALL_STATE(1982)] = 60376, + [SMALL_STATE(1983)] = 60383, + [SMALL_STATE(1984)] = 60390, + [SMALL_STATE(1985)] = 60397, + [SMALL_STATE(1986)] = 60404, + [SMALL_STATE(1987)] = 60411, + [SMALL_STATE(1988)] = 60418, + [SMALL_STATE(1989)] = 60425, + [SMALL_STATE(1990)] = 60432, + [SMALL_STATE(1991)] = 60439, + [SMALL_STATE(1992)] = 60446, + [SMALL_STATE(1993)] = 60453, + [SMALL_STATE(1994)] = 60460, + [SMALL_STATE(1995)] = 60467, + [SMALL_STATE(1996)] = 60474, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114368,503 +114759,503 @@ 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(575), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 15), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 15), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1416), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1807), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1275), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1808), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1645), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(516), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(742), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(742), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(740), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(121), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1182), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(922), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1947), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1691), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1809), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(30), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(902), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(875), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(981), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1147), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1551), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1487), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1486), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1711), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1649), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(693), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1977), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1658), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(312), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1996), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1832), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1839), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1816), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(731), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(726), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1842), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1474), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(797), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1655), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1525), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(797), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(789), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1398), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1805), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1290), + [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(1806), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1693), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(518), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(674), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(674), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(675), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(121), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1171), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(959), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1990), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1704), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1987), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1174), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1022), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(909), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(904), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1020), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1631), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1492), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1502), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1707), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1645), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(673), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1859), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1701), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(322), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1994), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(586), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1965), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1817), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1814), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(743), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(744), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1970), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1968), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1471), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(808), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1689), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1532), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(808), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(781), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1420), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1896), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1417), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1894), [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1281), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1859), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1646), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(157), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1184), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(920), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(45), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1663), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(732), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1830), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1648), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(231), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(617), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1976), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1975), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1865), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1417), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1272), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1728), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1697), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(378), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1179), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(916), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1712), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(691), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1775), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1672), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(330), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(591), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1772), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1771), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1730), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1401), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1253), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1685), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(277), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1177), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(953), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1682), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(752), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1750), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1670), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(392), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1998), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(604), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1828), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1827), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1901), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1857), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1643), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(169), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1205), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(973), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(29), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1639), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(727), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1788), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1644), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(271), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1995), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1853), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1863), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(566), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1412), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1908), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1253), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1895), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1683), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(283), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1170), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(935), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(48), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1670), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1678), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(728), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1742), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1672), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(348), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1996), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(627), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1786), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1785), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1899), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1715), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1266), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1716), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1667), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(404), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1190), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(924), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(47), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1640), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1705), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(745), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1819), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1637), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(329), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(610), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1820), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1821), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1724), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(575), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1995), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1236), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1991), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1707), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(742), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(742), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(740), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1185), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(951), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1947), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1691), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1809), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1161), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(902), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(875), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(981), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1551), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1487), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1687), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1678), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(703), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1791), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1664), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(431), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1796), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(590), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1819), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1825), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1831), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(731), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(726), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1841), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1842), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1655), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(789), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(516), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(742), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(742), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(740), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(121), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1182), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(902), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1947), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1691), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1809), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(875), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(981), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1551), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1487), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1649), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(312), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1996), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1839), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1816), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(731), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(726), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1842), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(797), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1655), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(797), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(789), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(157), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1184), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1650), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1663), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1648), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(231), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1997), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(617), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1976), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1865), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(567), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(378), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1179), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1671), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1712), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1672), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(330), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(591), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1772), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1771), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1730), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(277), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1177), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1662), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1682), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1670), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(392), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1998), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(604), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1828), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1827), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(564), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(307), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1185), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1687), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1678), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1664), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(431), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1796), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(590), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1819), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1825), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1831), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1641), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1654), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1987), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(574), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1415), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1928), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1288), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1993), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1709), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(518), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(674), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(674), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(675), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1181), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1990), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1704), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1987), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1022), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(909), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(904), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1020), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1631), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1492), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1502), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1703), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1698), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(723), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1978), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1695), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(371), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1975), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(588), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1974), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1973), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1971), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1970), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1968), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1689), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(781), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(564), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(518), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(674), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(674), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(675), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(121), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1171), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(909), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1990), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1704), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1987), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1022), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(904), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1020), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1631), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1492), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1502), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1707), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1645), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1701), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(322), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1994), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1965), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1817), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1814), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(743), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(744), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1968), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(808), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1689), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1532), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(808), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(781), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1205), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1639), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1671), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1644), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1995), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1855), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1853), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1863), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(324), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1181), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1703), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1698), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1695), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(371), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(588), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1974), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1973), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1971), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1190), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(47), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1640), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1705), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1637), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(329), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(610), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1820), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1821), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1724), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(283), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1170), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1670), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1678), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1672), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(348), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1996), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(627), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1786), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1785), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1899), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(570), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 89), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 89), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 64), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 64), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 67), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 67), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), @@ -114875,10 +115266,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 81), [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 81), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 89), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 89), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), @@ -114895,1628 +115286,1613 @@ static const TSParseActionEntry ts_parse_actions[] = { [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 103), [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 109), [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 109), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 53), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 53), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 14), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 14), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 15), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 15), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 15), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 15), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 15), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 15), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 16), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 16), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 74), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 74), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 59), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 59), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 55), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 55), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(516), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(742), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(742), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(740), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(121), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1709), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1711), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1649), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(693), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1977), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1658), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(312), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1996), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(605), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1839), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1816), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(731), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(726), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1842), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(797), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1655), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(797), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(789), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(825), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(307), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1687), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 53), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 53), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 55), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 55), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 74), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 74), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 59), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 59), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(518), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(675), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(169), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1710), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1639), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1671), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(727), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1788), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1644), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1855), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1853), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1863), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(743), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(744), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1968), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1471), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(808), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1689), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1532), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(808), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(781), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(821), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(283), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1678), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(703), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1791), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1664), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(431), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1796), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(590), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1825), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1831), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(728), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1742), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1672), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(348), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1996), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1786), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1785), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1899), [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(823), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(378), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1671), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1712), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(691), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1775), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1672), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(330), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(591), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1772), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1771), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1730), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1641), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1829), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1654), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1987), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(157), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1650), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1663), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(732), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1648), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(231), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1997), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1976), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1975), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1865), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(277), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1682), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(752), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1750), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(392), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1998), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(604), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1828), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1827), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(324), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1703), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1698), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(723), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1978), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1695), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(371), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1975), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(588), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1974), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1973), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1971), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(121), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1707), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1645), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(673), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1701), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(322), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1994), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(586), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1965), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1817), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1814), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(404), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(47), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1640), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1705), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(745), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1637), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(329), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1980), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(610), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1820), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1821), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1724), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1711), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(678), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1984), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1985), [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1150), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1285), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1756), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1698), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(902), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1947), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1651), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1809), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(875), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(981), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1147), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1487), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1008), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1284), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1696), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(909), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1990), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1642), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1987), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1022), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(904), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1020), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1631), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1492), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1502), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1138), + [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1148), [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1913), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1270), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1826), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1704), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1858), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1235), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1798), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1701), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1914), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1873), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1710), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1911), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1293), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1824), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1702), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1856), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1890), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1669), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), + [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1243), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1871), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1708), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(755), [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1525), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1532), [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 11), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 11), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(821), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(825), [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(902), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1947), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1651), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1809), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(875), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(909), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1990), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1642), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1987), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(904), [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 15), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 15), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 15), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 15), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 90), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 90), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 53), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 53), [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 53), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 53), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 53), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 53), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 90), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 90), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 53), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 53), [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 90), [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 90), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(926), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1157), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1947), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 88), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1947), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 65), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 52), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1947), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), SHIFT(1947), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1138), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(875), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 13), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 13), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1947), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3152] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1138), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 12), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 12), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 11), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 11), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1327), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1325), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(922), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1148), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(994), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1990), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1990), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 52), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 88), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 65), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), SHIFT(1990), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1990), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(904), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1990), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1221), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1220), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3146] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1148), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), SHIFT_REPEAT(1330), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 5), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 5), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1743), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), SHIFT(1138), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1691), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1947), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(922), + [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1002), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1861), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1704), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1990), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 51), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 51), [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 51), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 51), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 72), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 72), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 87), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 87), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 51), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 51), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 62), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1515), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(700), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1868), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 51), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 51), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 72), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 72), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 87), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 87), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 62), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1512), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(690), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1797), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 75), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 51), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 72), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 61), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 75), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 87), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 72), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 51), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 18), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1373), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 97), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1476), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 83), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 68), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 68), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1429), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 105), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1439), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1531), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1531), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 83), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(621), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1246), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1659), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(760), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 76), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 68), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 104), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 68), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 106), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1090), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 104), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 97), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 111), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1895), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 114), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 114), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1699), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), SHIFT_REPEAT(1379), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1353), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1665), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 106), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4516] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 74), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 59), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 74), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 60), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 59), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 87), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 97), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 83), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 105), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 83), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1439), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1360), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1472), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 68), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 68), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1430), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1530), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1530), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 76), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(623), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(764), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 68), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1679), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1651), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1286), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1346), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 111), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 114), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 114), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1803), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 97), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 104), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1131), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), SHIFT_REPEAT(1328), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 106), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 68), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 104), + [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1690), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 106), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 74), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 60), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 59), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 59), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 74), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4642] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 8dcbff35f..0d7cd254c 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -306,8 +306,13 @@ typedef short short_t; typedef unsigned unsigned_t; typedef signed signed_t; -// FIXME: Still errors typedef long long; +typedef short short; +typedef unsigned int uint; +typedef unsigned short ushort; +typedef unsigned unsigned short; +typedef signed signed short; +typedef signed signed unsigned; -------------------------------------------------------------------------------- @@ -361,13 +366,19 @@ typedef long long; declarator: (type_identifier))) (type_definition type: (sized_type_specifier) - declarator: (type_identifier)) + declarator: (primitive_type)) (type_definition type: (sized_type_specifier) - declarator: (type_identifier)) + declarator: (primitive_type)) (type_definition type: (sized_type_specifier) - declarator: (type_identifier)) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier) + declarator: (primitive_type)) (type_definition type: (sized_type_specifier) declarator: (type_identifier)) @@ -388,14 +399,26 @@ typedef long long; declarator: (type_identifier)) (type_definition type: (sized_type_specifier) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier + type: (primitive_type)) declarator: (type_identifier)) (type_definition type: (sized_type_specifier) declarator: (type_identifier)) - (comment) (type_definition type: (sized_type_specifier) - declarator: (MISSING type_identifier))) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier) + declarator: (primitive_type)) + (type_definition + type: (sized_type_specifier) + declarator: (primitive_type))) ================================================================================ Function declarations