diff --git a/grammar.js b/grammar.js index 80db1e9..6d39e7a 100644 --- a/grammar.js +++ b/grammar.js @@ -660,12 +660,11 @@ module.exports = grammar({ 'if', field('condition', $.parenthesized_expression), field('consequence', $._statement), - optional(seq( - 'else', - field('alternative', $._statement), - )), + optional(field('alternative', $.else_clause)), )), + else_clause: $ => seq('else', $._statement), + switch_statement: $ => seq( 'switch', field('condition', $.parenthesized_expression), diff --git a/src/grammar.json b/src/grammar.json index 1156f37..a0843af 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3998,21 +3998,12 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } }, { "type": "BLANK" @@ -4022,6 +4013,19 @@ ] } }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, "switch_statement": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index cdfacfc..a4c9ce6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1292,6 +1292,21 @@ } } }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, { "type": "enum_specifier", "named": true, @@ -1961,7 +1976,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "else_clause", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 4cbb90d..d0c87c0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1573 -#define LARGE_STATE_COUNT 386 -#define SYMBOL_COUNT 288 +#define STATE_COUNT 1577 +#define LARGE_STATE_COUNT 390 +#define SYMBOL_COUNT 289 #define ALIAS_COUNT 3 #define TOKEN_COUNT 134 #define EXTERNAL_TOKEN_COUNT 0 @@ -231,82 +231,83 @@ enum { sym_labeled_statement = 212, sym_expression_statement = 213, sym_if_statement = 214, - sym_switch_statement = 215, - sym_case_statement = 216, - sym_while_statement = 217, - sym_do_statement = 218, - sym_for_statement = 219, - sym_return_statement = 220, - sym_break_statement = 221, - sym_continue_statement = 222, - sym_goto_statement = 223, - sym__expression = 224, - sym_comma_expression = 225, - sym_conditional_expression = 226, - sym_assignment_expression = 227, - sym_pointer_expression = 228, - sym_unary_expression = 229, - sym_binary_expression = 230, - sym_update_expression = 231, - sym_cast_expression = 232, - sym_type_descriptor = 233, - sym_sizeof_expression = 234, - sym_offsetof_expression = 235, - sym_generic_expression = 236, - sym_subscript_expression = 237, - sym_call_expression = 238, - sym_gnu_asm_expression = 239, - sym_gnu_asm_qualifier = 240, - sym_gnu_asm_output_operand_list = 241, - sym_gnu_asm_output_operand = 242, - sym_gnu_asm_input_operand_list = 243, - sym_gnu_asm_input_operand = 244, - sym_gnu_asm_clobber_list = 245, - sym_gnu_asm_goto_list = 246, - sym_argument_list = 247, - sym_field_expression = 248, - sym_compound_literal_expression = 249, - sym_parenthesized_expression = 250, - sym_initializer_list = 251, - sym_initializer_pair = 252, - sym_subscript_designator = 253, - sym_field_designator = 254, - sym_char_literal = 255, - sym_concatenated_string = 256, - sym_string_literal = 257, - sym__empty_declaration = 258, - sym_macro_type_specifier = 259, - aux_sym_translation_unit_repeat1 = 260, - aux_sym_preproc_params_repeat1 = 261, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 262, - aux_sym_preproc_argument_list_repeat1 = 263, - aux_sym_declaration_repeat1 = 264, - aux_sym_type_definition_repeat1 = 265, - aux_sym_type_definition_repeat2 = 266, - aux_sym__declaration_specifiers_repeat1 = 267, - aux_sym_attribute_declaration_repeat1 = 268, - aux_sym_attributed_declarator_repeat1 = 269, - aux_sym_pointer_declarator_repeat1 = 270, - aux_sym_function_declarator_repeat1 = 271, - aux_sym_sized_type_specifier_repeat1 = 272, - aux_sym_enumerator_list_repeat1 = 273, - aux_sym_field_declaration_repeat1 = 274, - aux_sym_parameter_list_repeat1 = 275, - aux_sym_case_statement_repeat1 = 276, - aux_sym_generic_expression_repeat1 = 277, - aux_sym_gnu_asm_expression_repeat1 = 278, - aux_sym_gnu_asm_output_operand_list_repeat1 = 279, - aux_sym_gnu_asm_input_operand_list_repeat1 = 280, - aux_sym_gnu_asm_clobber_list_repeat1 = 281, - aux_sym_gnu_asm_goto_list_repeat1 = 282, - aux_sym_argument_list_repeat1 = 283, - aux_sym_initializer_list_repeat1 = 284, - aux_sym_initializer_pair_repeat1 = 285, - aux_sym_concatenated_string_repeat1 = 286, - aux_sym_string_literal_repeat1 = 287, - alias_sym_field_identifier = 288, - alias_sym_statement_identifier = 289, - alias_sym_type_identifier = 290, + sym_else_clause = 215, + sym_switch_statement = 216, + sym_case_statement = 217, + sym_while_statement = 218, + sym_do_statement = 219, + sym_for_statement = 220, + sym_return_statement = 221, + sym_break_statement = 222, + sym_continue_statement = 223, + sym_goto_statement = 224, + sym__expression = 225, + sym_comma_expression = 226, + sym_conditional_expression = 227, + sym_assignment_expression = 228, + sym_pointer_expression = 229, + sym_unary_expression = 230, + sym_binary_expression = 231, + sym_update_expression = 232, + sym_cast_expression = 233, + sym_type_descriptor = 234, + sym_sizeof_expression = 235, + sym_offsetof_expression = 236, + sym_generic_expression = 237, + sym_subscript_expression = 238, + sym_call_expression = 239, + sym_gnu_asm_expression = 240, + sym_gnu_asm_qualifier = 241, + sym_gnu_asm_output_operand_list = 242, + sym_gnu_asm_output_operand = 243, + sym_gnu_asm_input_operand_list = 244, + sym_gnu_asm_input_operand = 245, + sym_gnu_asm_clobber_list = 246, + sym_gnu_asm_goto_list = 247, + sym_argument_list = 248, + sym_field_expression = 249, + sym_compound_literal_expression = 250, + sym_parenthesized_expression = 251, + sym_initializer_list = 252, + sym_initializer_pair = 253, + sym_subscript_designator = 254, + sym_field_designator = 255, + sym_char_literal = 256, + sym_concatenated_string = 257, + sym_string_literal = 258, + sym__empty_declaration = 259, + sym_macro_type_specifier = 260, + aux_sym_translation_unit_repeat1 = 261, + aux_sym_preproc_params_repeat1 = 262, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 263, + aux_sym_preproc_argument_list_repeat1 = 264, + aux_sym_declaration_repeat1 = 265, + aux_sym_type_definition_repeat1 = 266, + aux_sym_type_definition_repeat2 = 267, + aux_sym__declaration_specifiers_repeat1 = 268, + aux_sym_attribute_declaration_repeat1 = 269, + aux_sym_attributed_declarator_repeat1 = 270, + aux_sym_pointer_declarator_repeat1 = 271, + aux_sym_function_declarator_repeat1 = 272, + aux_sym_sized_type_specifier_repeat1 = 273, + aux_sym_enumerator_list_repeat1 = 274, + aux_sym_field_declaration_repeat1 = 275, + aux_sym_parameter_list_repeat1 = 276, + aux_sym_case_statement_repeat1 = 277, + aux_sym_generic_expression_repeat1 = 278, + aux_sym_gnu_asm_expression_repeat1 = 279, + aux_sym_gnu_asm_output_operand_list_repeat1 = 280, + aux_sym_gnu_asm_input_operand_list_repeat1 = 281, + aux_sym_gnu_asm_clobber_list_repeat1 = 282, + aux_sym_gnu_asm_goto_list_repeat1 = 283, + aux_sym_argument_list_repeat1 = 284, + aux_sym_initializer_list_repeat1 = 285, + aux_sym_initializer_pair_repeat1 = 286, + aux_sym_concatenated_string_repeat1 = 287, + aux_sym_string_literal_repeat1 = 288, + alias_sym_field_identifier = 289, + alias_sym_statement_identifier = 290, + alias_sym_type_identifier = 291, }; static const char * const ts_symbol_names[] = { @@ -525,6 +526,7 @@ static const char * const ts_symbol_names[] = { [sym_labeled_statement] = "labeled_statement", [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", + [sym_else_clause] = "else_clause", [sym_switch_statement] = "switch_statement", [sym_case_statement] = "case_statement", [sym_while_statement] = "while_statement", @@ -819,6 +821,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_labeled_statement] = sym_labeled_statement, [sym_expression_statement] = sym_expression_statement, [sym_if_statement] = sym_if_statement, + [sym_else_clause] = sym_else_clause, [sym_switch_statement] = sym_switch_statement, [sym_case_statement] = sym_case_statement, [sym_while_statement] = sym_while_statement, @@ -1763,6 +1766,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, [sym_switch_statement] = { .visible = true, .named = true, @@ -2192,26 +2199,26 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [41] = {.index = 61, .length = 2}, [42] = {.index = 63, .length = 2}, [44] = {.index = 65, .length = 2}, - [45] = {.index = 67, .length = 1}, - [46] = {.index = 68, .length = 1}, - [47] = {.index = 69, .length = 2}, - [48] = {.index = 71, .length = 1}, - [49] = {.index = 72, .length = 1}, - [50] = {.index = 73, .length = 2}, - [51] = {.index = 75, .length = 3}, - [52] = {.index = 78, .length = 2}, - [53] = {.index = 80, .length = 3}, - [54] = {.index = 83, .length = 2}, - [55] = {.index = 85, .length = 2}, - [56] = {.index = 87, .length = 3}, - [57] = {.index = 90, .length = 2}, - [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 1}, - [60] = {.index = 95, .length = 2}, - [61] = {.index = 97, .length = 3}, - [62] = {.index = 100, .length = 2}, - [63] = {.index = 102, .length = 2}, - [64] = {.index = 104, .length = 3}, + [45] = {.index = 67, .length = 3}, + [46] = {.index = 70, .length = 1}, + [47] = {.index = 71, .length = 1}, + [48] = {.index = 72, .length = 2}, + [49] = {.index = 74, .length = 1}, + [50] = {.index = 75, .length = 1}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 3}, + [53] = {.index = 81, .length = 2}, + [54] = {.index = 83, .length = 3}, + [55] = {.index = 86, .length = 2}, + [56] = {.index = 88, .length = 2}, + [57] = {.index = 90, .length = 3}, + [58] = {.index = 93, .length = 2}, + [59] = {.index = 95, .length = 2}, + [60] = {.index = 97, .length = 1}, + [61] = {.index = 98, .length = 2}, + [62] = {.index = 100, .length = 3}, + [63] = {.index = 103, .length = 2}, + [64] = {.index = 105, .length = 2}, [65] = {.index = 107, .length = 3}, [66] = {.index = 110, .length = 2}, [67] = {.index = 112, .length = 1}, @@ -2368,69 +2375,69 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_name, 2}, [67] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [70] = {field_type, 2}, - [68] = + [71] = {field_assembly_code, 2}, - [69] = + [72] = {field_name, 0}, {field_type, 2}, - [71] = + [74] = {field_declarator, 2}, - [72] = + [75] = {field_declarator, 0}, - [73] = + [76] = {field_declarator, 0}, {field_value, 2}, - [75] = + [78] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [78] = + [81] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [80] = + [83] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [83] = + [86] = {field_argument, 0}, {field_index, 2}, - [85] = + [88] = {field_alternative, 3}, {field_condition, 0}, - [87] = + [90] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [90] = + [93] = {field_alternative, 3}, {field_condition, 1}, - [92] = + [95] = {field_alternative, 3}, {field_name, 1}, - [94] = + [97] = {field_size, 1}, - [95] = + [98] = {field_declarator, 3}, {field_type, 1}, - [97] = + [100] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [100] = + [103] = {field_declarator, 3}, {field_type, 2}, - [102] = + [105] = {field_name, 0}, {field_value, 2}, - [104] = + [107] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [107] = - {field_alternative, 4}, - {field_condition, 1}, - {field_consequence, 2}, [110] = {field_body, 1}, {field_condition, 3}, @@ -2615,7 +2622,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [44] = { [2] = alias_sym_type_identifier, }, - [64] = { + [65] = { [1] = alias_sym_type_identifier, }, [75] = { @@ -2637,63 +2644,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 5, + [6] = 6, [7] = 7, [8] = 3, - [9] = 3, - [10] = 4, + [9] = 7, + [10] = 3, [11] = 4, - [12] = 5, + [12] = 6, [13] = 7, - [14] = 7, + [14] = 4, [15] = 4, - [16] = 5, - [17] = 17, + [16] = 6, + [17] = 6, [18] = 7, [19] = 3, [20] = 20, [21] = 21, [22] = 22, - [23] = 20, - [24] = 21, + [23] = 21, + [24] = 22, [25] = 25, [26] = 26, - [27] = 26, - [28] = 28, - [29] = 25, - [30] = 26, - [31] = 21, - [32] = 26, - [33] = 25, - [34] = 28, - [35] = 21, - [36] = 20, - [37] = 37, - [38] = 28, - [39] = 28, - [40] = 25, - [41] = 20, - [42] = 42, + [27] = 22, + [28] = 20, + [29] = 29, + [30] = 30, + [31] = 26, + [32] = 30, + [33] = 20, + [34] = 20, + [35] = 26, + [36] = 26, + [37] = 21, + [38] = 22, + [39] = 30, + [40] = 30, + [41] = 41, + [42] = 21, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, - [48] = 46, - [49] = 44, - [50] = 46, - [51] = 43, - [52] = 47, - [53] = 44, - [54] = 45, + [48] = 43, + [49] = 46, + [50] = 47, + [51] = 47, + [52] = 46, + [53] = 43, + [54] = 43, [55] = 45, - [56] = 45, - [57] = 44, - [58] = 47, - [59] = 46, - [60] = 43, - [61] = 43, - [62] = 47, + [56] = 47, + [57] = 46, + [58] = 45, + [59] = 45, + [60] = 44, + [61] = 44, + [62] = 44, [63] = 63, [64] = 63, [65] = 63, @@ -2706,15 +2713,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 75, + [75] = 73, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 68, + [81] = 81, [82] = 82, - [83] = 67, + [83] = 83, [84] = 84, [85] = 85, [86] = 86, @@ -2728,14 +2735,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [94] = 94, [95] = 95, [96] = 96, - [97] = 84, - [98] = 98, + [97] = 97, + [98] = 85, [99] = 99, [100] = 100, [101] = 101, [102] = 102, [103] = 103, - [104] = 104, + [104] = 67, [105] = 105, [106] = 106, [107] = 107, @@ -2744,280 +2751,280 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 110, + [113] = 113, [114] = 114, [115] = 115, - [116] = 112, - [117] = 117, - [118] = 107, + [116] = 116, + [117] = 109, + [118] = 118, [119] = 119, [120] = 120, [121] = 121, - [122] = 114, - [123] = 109, - [124] = 115, - [125] = 125, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 108, [126] = 126, - [127] = 108, - [128] = 112, - [129] = 111, - [130] = 130, - [131] = 117, - [132] = 132, - [133] = 133, + [127] = 123, + [128] = 126, + [129] = 126, + [130] = 123, + [131] = 121, + [132] = 108, + [133] = 121, [134] = 134, - [135] = 117, - [136] = 136, - [137] = 107, - [138] = 136, - [139] = 134, - [140] = 133, - [141] = 132, - [142] = 130, - [143] = 108, - [144] = 126, - [145] = 125, - [146] = 121, + [135] = 135, + [136] = 109, + [137] = 118, + [138] = 120, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, [147] = 147, - [148] = 120, - [149] = 119, - [150] = 107, - [151] = 114, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 110, + [153] = 124, + [154] = 118, + [155] = 122, [156] = 156, - [157] = 157, - [158] = 110, - [159] = 111, - [160] = 119, - [161] = 161, - [162] = 120, - [163] = 163, + [157] = 150, + [158] = 158, + [159] = 156, + [160] = 135, + [161] = 68, + [162] = 162, + [163] = 134, [164] = 164, - [165] = 110, - [166] = 166, - [167] = 109, + [165] = 165, + [166] = 139, + [167] = 134, [168] = 168, - [169] = 136, - [170] = 134, - [171] = 171, - [172] = 133, - [173] = 173, - [174] = 115, - [175] = 109, - [176] = 132, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 111, - [183] = 183, - [184] = 126, - [185] = 133, - [186] = 130, - [187] = 125, - [188] = 121, - [189] = 189, - [190] = 134, - [191] = 136, - [192] = 115, - [193] = 119, - [194] = 120, - [195] = 132, - [196] = 114, - [197] = 112, - [198] = 121, - [199] = 125, - [200] = 117, - [201] = 130, - [202] = 126, - [203] = 108, - [204] = 80, - [205] = 92, - [206] = 68, - [207] = 94, - [208] = 87, - [209] = 95, - [210] = 69, - [211] = 86, - [212] = 99, - [213] = 75, - [214] = 82, - [215] = 72, - [216] = 96, + [169] = 156, + [170] = 109, + [171] = 118, + [172] = 120, + [173] = 121, + [174] = 141, + [175] = 142, + [176] = 176, + [177] = 124, + [178] = 149, + [179] = 110, + [180] = 126, + [181] = 134, + [182] = 147, + [183] = 123, + [184] = 150, + [185] = 108, + [186] = 186, + [187] = 135, + [188] = 139, + [189] = 68, + [190] = 141, + [191] = 149, + [192] = 149, + [193] = 142, + [194] = 147, + [195] = 150, + [196] = 147, + [197] = 142, + [198] = 110, + [199] = 124, + [200] = 68, + [201] = 141, + [202] = 156, + [203] = 122, + [204] = 139, + [205] = 135, + [206] = 122, + [207] = 120, + [208] = 82, + [209] = 71, + [210] = 90, + [211] = 89, + [212] = 106, + [213] = 105, + [214] = 95, + [215] = 99, + [216] = 102, [217] = 85, - [218] = 85, - [219] = 80, - [220] = 96, - [221] = 73, - [222] = 76, - [223] = 79, - [224] = 90, - [225] = 106, - [226] = 105, - [227] = 91, - [228] = 104, - [229] = 103, - [230] = 72, - [231] = 102, - [232] = 101, - [233] = 89, + [218] = 89, + [219] = 91, + [220] = 92, + [221] = 91, + [222] = 96, + [223] = 69, + [224] = 93, + [225] = 96, + [226] = 88, + [227] = 71, + [228] = 69, + [229] = 88, + [230] = 82, + [231] = 72, + [232] = 83, + [233] = 92, [234] = 100, - [235] = 88, - [236] = 69, - [237] = 86, - [238] = 74, - [239] = 77, - [240] = 89, - [241] = 82, - [242] = 78, - [243] = 74, - [244] = 70, - [245] = 73, - [246] = 76, - [247] = 92, - [248] = 79, - [249] = 93, - [250] = 90, - [251] = 106, - [252] = 105, - [253] = 71, - [254] = 93, - [255] = 94, - [256] = 92, - [257] = 98, - [258] = 74, - [259] = 78, - [260] = 71, - [261] = 91, - [262] = 75, - [263] = 99, - [264] = 70, - [265] = 89, - [266] = 84, - [267] = 87, - [268] = 98, - [269] = 104, - [270] = 95, - [271] = 103, - [272] = 88, - [273] = 102, - [274] = 71, - [275] = 99, - [276] = 95, - [277] = 101, - [278] = 87, - [279] = 77, - [280] = 75, - [281] = 70, - [282] = 77, - [283] = 93, - [284] = 78, - [285] = 94, - [286] = 72, - [287] = 96, - [288] = 88, - [289] = 84, - [290] = 100, - [291] = 91, - [292] = 79, - [293] = 80, - [294] = 85, - [295] = 98, - [296] = 73, - [297] = 76, - [298] = 90, - [299] = 106, - [300] = 82, - [301] = 105, - [302] = 68, - [303] = 69, - [304] = 100, - [305] = 86, - [306] = 101, - [307] = 104, - [308] = 103, - [309] = 102, - [310] = 154, - [311] = 147, - [312] = 166, - [313] = 179, - [314] = 177, - [315] = 177, - [316] = 156, - [317] = 183, - [318] = 189, - [319] = 155, - [320] = 178, - [321] = 180, - [322] = 154, - [323] = 153, - [324] = 179, - [325] = 152, - [326] = 189, - [327] = 164, - [328] = 163, - [329] = 179, - [330] = 153, - [331] = 181, - [332] = 173, - [333] = 152, - [334] = 147, - [335] = 178, - [336] = 171, - [337] = 168, - [338] = 156, - [339] = 173, - [340] = 171, - [341] = 181, - [342] = 157, - [343] = 178, - [344] = 152, - [345] = 171, - [346] = 177, - [347] = 168, - [348] = 153, - [349] = 154, - [350] = 155, - [351] = 166, - [352] = 157, - [353] = 164, - [354] = 163, - [355] = 189, - [356] = 180, - [357] = 181, - [358] = 161, - [359] = 180, - [360] = 161, - [361] = 161, - [362] = 157, - [363] = 163, - [364] = 164, - [365] = 168, - [366] = 166, - [367] = 183, - [368] = 156, - [369] = 155, - [370] = 147, - [371] = 173, - [372] = 183, - [373] = 373, - [374] = 67, - [375] = 375, - [376] = 375, - [377] = 373, - [378] = 375, - [379] = 375, - [380] = 373, - [381] = 373, - [382] = 67, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, + [235] = 72, + [236] = 101, + [237] = 94, + [238] = 97, + [239] = 73, + [240] = 93, + [241] = 81, + [242] = 74, + [243] = 80, + [244] = 77, + [245] = 95, + [246] = 79, + [247] = 78, + [248] = 74, + [249] = 77, + [250] = 78, + [251] = 79, + [252] = 77, + [253] = 78, + [254] = 79, + [255] = 80, + [256] = 81, + [257] = 97, + [258] = 101, + [259] = 83, + [260] = 94, + [261] = 80, + [262] = 72, + [263] = 76, + [264] = 71, + [265] = 105, + [266] = 106, + [267] = 90, + [268] = 100, + [269] = 99, + [270] = 107, + [271] = 95, + [272] = 81, + [273] = 90, + [274] = 99, + [275] = 102, + [276] = 74, + [277] = 97, + [278] = 84, + [279] = 83, + [280] = 86, + [281] = 101, + [282] = 76, + [283] = 105, + [284] = 106, + [285] = 102, + [286] = 70, + [287] = 103, + [288] = 107, + [289] = 76, + [290] = 88, + [291] = 69, + [292] = 96, + [293] = 100, + [294] = 70, + [295] = 73, + [296] = 85, + [297] = 103, + [298] = 103, + [299] = 87, + [300] = 87, + [301] = 86, + [302] = 94, + [303] = 93, + [304] = 82, + [305] = 84, + [306] = 84, + [307] = 92, + [308] = 91, + [309] = 86, + [310] = 87, + [311] = 70, + [312] = 89, + [313] = 107, + [314] = 165, + [315] = 113, + [316] = 145, + [317] = 162, + [318] = 146, + [319] = 148, + [320] = 165, + [321] = 112, + [322] = 113, + [323] = 114, + [324] = 164, + [325] = 119, + [326] = 186, + [327] = 144, + [328] = 143, + [329] = 115, + [330] = 165, + [331] = 162, + [332] = 164, + [333] = 140, + [334] = 119, + [335] = 176, + [336] = 111, + [337] = 162, + [338] = 111, + [339] = 148, + [340] = 158, + [341] = 176, + [342] = 116, + [343] = 146, + [344] = 143, + [345] = 112, + [346] = 145, + [347] = 144, + [348] = 115, + [349] = 114, + [350] = 113, + [351] = 186, + [352] = 111, + [353] = 151, + [354] = 176, + [355] = 158, + [356] = 168, + [357] = 164, + [358] = 151, + [359] = 158, + [360] = 116, + [361] = 140, + [362] = 168, + [363] = 168, + [364] = 140, + [365] = 119, + [366] = 112, + [367] = 143, + [368] = 114, + [369] = 144, + [370] = 146, + [371] = 145, + [372] = 115, + [373] = 116, + [374] = 151, + [375] = 186, + [376] = 148, + [377] = 377, + [378] = 378, + [379] = 378, + [380] = 378, + [381] = 377, + [382] = 377, + [383] = 378, + [384] = 377, + [385] = 67, + [386] = 67, [387] = 387, [388] = 388, [389] = 389, @@ -3035,108 +3042,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [401] = 401, [402] = 402, [403] = 403, - [404] = 402, - [405] = 403, + [404] = 404, + [405] = 405, [406] = 406, - [407] = 407, + [407] = 406, [408] = 408, - [409] = 407, - [410] = 403, + [409] = 409, + [410] = 408, [411] = 408, - [412] = 407, - [413] = 408, - [414] = 402, - [415] = 415, - [416] = 415, - [417] = 415, - [418] = 415, - [419] = 415, - [420] = 415, - [421] = 415, - [422] = 415, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 423, + [412] = 405, + [413] = 405, + [414] = 406, + [415] = 409, + [416] = 416, + [417] = 409, + [418] = 418, + [419] = 419, + [420] = 419, + [421] = 419, + [422] = 419, + [423] = 419, + [424] = 419, + [425] = 419, + [426] = 419, + [427] = 427, [428] = 428, - [429] = 426, - [430] = 430, + [429] = 429, + [430] = 427, [431] = 431, - [432] = 423, + [432] = 427, [433] = 433, [434] = 434, - [435] = 435, + [435] = 434, [436] = 436, [437] = 437, [438] = 438, - [439] = 439, + [439] = 437, [440] = 440, [441] = 441, - [442] = 437, + [442] = 440, [443] = 443, - [444] = 439, - [445] = 443, - [446] = 433, - [447] = 433, - [448] = 434, + [444] = 441, + [445] = 445, + [446] = 438, + [447] = 438, + [448] = 445, [449] = 449, - [450] = 434, - [451] = 440, - [452] = 449, - [453] = 434, - [454] = 449, - [455] = 440, - [456] = 436, - [457] = 436, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 440, + [455] = 455, + [456] = 456, + [457] = 449, [458] = 458, - [459] = 436, - [460] = 433, - [461] = 437, - [462] = 441, - [463] = 441, + [459] = 441, + [460] = 455, + [461] = 458, + [462] = 455, + [463] = 451, [464] = 449, - [465] = 440, - [466] = 466, - [467] = 467, - [468] = 443, - [469] = 443, - [470] = 438, - [471] = 471, - [472] = 458, - [473] = 438, - [474] = 439, - [475] = 437, - [476] = 458, - [477] = 458, - [478] = 439, - [479] = 441, - [480] = 438, - [481] = 481, - [482] = 482, - [483] = 483, + [465] = 441, + [466] = 449, + [467] = 452, + [468] = 445, + [469] = 458, + [470] = 451, + [471] = 452, + [472] = 440, + [473] = 453, + [474] = 455, + [475] = 452, + [476] = 453, + [477] = 445, + [478] = 437, + [479] = 453, + [480] = 458, + [481] = 451, + [482] = 437, + [483] = 438, [484] = 484, - [485] = 483, + [485] = 485, [486] = 486, [487] = 487, - [488] = 486, - [489] = 489, - [490] = 483, + [488] = 488, + [489] = 486, + [490] = 490, [491] = 491, - [492] = 492, + [492] = 490, [493] = 493, - [494] = 494, + [494] = 486, [495] = 495, - [496] = 483, + [496] = 496, [497] = 497, [498] = 498, [499] = 499, [500] = 500, [501] = 501, [502] = 502, - [503] = 503, + [503] = 486, [504] = 504, - [505] = 502, + [505] = 505, [506] = 506, [507] = 507, [508] = 508, @@ -3149,81 +3156,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [515] = 515, [516] = 516, [517] = 517, - [518] = 512, + [518] = 514, [519] = 519, - [520] = 511, - [521] = 511, + [520] = 516, + [521] = 505, [522] = 522, - [523] = 507, - [524] = 508, + [523] = 523, + [524] = 512, [525] = 525, - [526] = 519, - [527] = 503, - [528] = 506, - [529] = 517, - [530] = 530, - [531] = 510, - [532] = 510, - [533] = 503, - [534] = 525, - [535] = 514, - [536] = 516, - [537] = 537, - [538] = 503, - [539] = 501, - [540] = 522, - [541] = 515, - [542] = 537, - [543] = 515, - [544] = 525, - [545] = 517, - [546] = 522, - [547] = 502, - [548] = 548, - [549] = 516, - [550] = 507, - [551] = 517, - [552] = 522, - [553] = 516, - [554] = 554, - [555] = 519, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 515, - [560] = 514, - [561] = 513, - [562] = 512, - [563] = 511, - [564] = 510, - [565] = 508, - [566] = 508, - [567] = 525, - [568] = 514, - [569] = 513, - [570] = 504, - [571] = 506, - [572] = 513, - [573] = 504, - [574] = 574, - [575] = 575, - [576] = 504, - [577] = 519, - [578] = 502, - [579] = 507, - [580] = 512, - [581] = 506, - [582] = 582, - [583] = 583, - [584] = 424, - [585] = 585, - [586] = 585, - [587] = 383, - [588] = 384, - [589] = 589, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 509, + [531] = 531, + [532] = 532, + [533] = 510, + [534] = 515, + [535] = 505, + [536] = 515, + [537] = 532, + [538] = 531, + [539] = 505, + [540] = 529, + [541] = 528, + [542] = 542, + [543] = 527, + [544] = 526, + [545] = 525, + [546] = 523, + [547] = 517, + [548] = 519, + [549] = 523, + [550] = 516, + [551] = 525, + [552] = 519, + [553] = 511, + [554] = 526, + [555] = 527, + [556] = 528, + [557] = 529, + [558] = 531, + [559] = 532, + [560] = 512, + [561] = 542, + [562] = 517, + [563] = 563, + [564] = 515, + [565] = 565, + [566] = 542, + [567] = 567, + [568] = 510, + [569] = 509, + [570] = 510, + [571] = 519, + [572] = 509, + [573] = 573, + [574] = 516, + [575] = 512, + [576] = 523, + [577] = 525, + [578] = 526, + [579] = 527, + [580] = 528, + [581] = 529, + [582] = 542, + [583] = 531, + [584] = 517, + [585] = 532, + [586] = 586, + [587] = 587, + [588] = 428, + [589] = 388, [590] = 590, - [591] = 591, - [592] = 592, + [591] = 387, + [592] = 590, [593] = 593, [594] = 594, [595] = 595, @@ -3267,250 +3274,250 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [633] = 633, [634] = 634, [635] = 635, - [636] = 613, + [636] = 636, [637] = 637, [638] = 638, - [639] = 638, - [640] = 638, - [641] = 638, - [642] = 630, - [643] = 627, - [644] = 644, - [645] = 620, - [646] = 598, - [647] = 647, - [648] = 644, - [649] = 644, - [650] = 589, - [651] = 602, - [652] = 631, - [653] = 592, - [654] = 616, - [655] = 611, - [656] = 594, - [657] = 591, - [658] = 615, - [659] = 644, + [639] = 639, + [640] = 603, + [641] = 641, + [642] = 642, + [643] = 642, + [644] = 642, + [645] = 642, + [646] = 620, + [647] = 628, + [648] = 636, + [649] = 649, + [650] = 650, + [651] = 619, + [652] = 615, + [653] = 594, + [654] = 624, + [655] = 649, + [656] = 597, + [657] = 639, + [658] = 649, + [659] = 617, [660] = 633, - [661] = 623, - [662] = 612, - [663] = 595, - [664] = 606, - [665] = 622, - [666] = 618, - [667] = 613, - [668] = 668, - [669] = 669, - [670] = 614, + [661] = 638, + [662] = 629, + [663] = 626, + [664] = 621, + [665] = 634, + [666] = 625, + [667] = 649, + [668] = 596, + [669] = 603, + [670] = 623, [671] = 671, - [672] = 672, - [673] = 673, - [674] = 627, + [672] = 595, + [673] = 632, + [674] = 674, [675] = 675, [676] = 676, - [677] = 594, - [678] = 156, + [677] = 677, + [678] = 678, [679] = 679, - [680] = 168, + [680] = 680, [681] = 681, - [682] = 606, - [683] = 171, - [684] = 592, - [685] = 685, - [686] = 615, - [687] = 612, + [682] = 597, + [683] = 112, + [684] = 146, + [685] = 148, + [686] = 162, + [687] = 165, [688] = 688, - [689] = 178, + [689] = 689, [690] = 690, [691] = 691, - [692] = 692, - [693] = 595, - [694] = 591, + [692] = 186, + [693] = 639, + [694] = 694, [695] = 695, - [696] = 180, - [697] = 631, - [698] = 620, - [699] = 189, - [700] = 630, - [701] = 701, - [702] = 616, - [703] = 672, - [704] = 598, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 583, - [709] = 384, - [710] = 710, - [711] = 582, - [712] = 383, - [713] = 688, - [714] = 714, - [715] = 715, + [696] = 676, + [697] = 628, + [698] = 698, + [699] = 617, + [700] = 700, + [701] = 629, + [702] = 702, + [703] = 626, + [704] = 621, + [705] = 596, + [706] = 619, + [707] = 633, + [708] = 620, + [709] = 709, + [710] = 615, + [711] = 625, + [712] = 387, + [713] = 586, + [714] = 388, + [715] = 587, [716] = 716, - [717] = 717, - [718] = 676, - [719] = 688, - [720] = 675, - [721] = 695, - [722] = 706, - [723] = 707, + [717] = 691, + [718] = 112, + [719] = 689, + [720] = 678, + [721] = 690, + [722] = 691, + [723] = 688, [724] = 724, - [725] = 171, - [726] = 692, - [727] = 717, - [728] = 716, - [729] = 705, - [730] = 168, - [731] = 707, - [732] = 732, + [725] = 694, + [726] = 695, + [727] = 679, + [728] = 698, + [729] = 729, + [730] = 702, + [731] = 679, + [732] = 186, [733] = 733, - [734] = 734, - [735] = 171, - [736] = 685, - [737] = 681, - [738] = 701, - [739] = 706, - [740] = 695, - [741] = 679, + [734] = 165, + [735] = 162, + [736] = 736, + [737] = 737, + [738] = 700, + [739] = 148, + [740] = 146, + [741] = 741, [742] = 681, - [743] = 685, - [744] = 692, - [745] = 675, - [746] = 180, - [747] = 178, - [748] = 691, - [749] = 749, - [750] = 705, - [751] = 701, - [752] = 717, - [753] = 676, - [754] = 189, - [755] = 156, - [756] = 168, - [757] = 757, - [758] = 679, - [759] = 178, - [760] = 691, - [761] = 180, - [762] = 189, - [763] = 717, - [764] = 156, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, + [743] = 743, + [744] = 680, + [745] = 745, + [746] = 680, + [747] = 681, + [748] = 700, + [749] = 689, + [750] = 678, + [751] = 690, + [752] = 745, + [753] = 688, + [754] = 741, + [755] = 755, + [756] = 745, + [757] = 745, + [758] = 702, + [759] = 698, + [760] = 760, + [761] = 695, + [762] = 186, + [763] = 165, + [764] = 162, + [765] = 148, + [766] = 146, + [767] = 112, + [768] = 694, [769] = 769, [770] = 770, [771] = 771, [772] = 772, [773] = 773, [774] = 774, - [775] = 765, - [776] = 766, - [777] = 772, + [775] = 775, + [776] = 776, + [777] = 777, [778] = 778, - [779] = 779, - [780] = 771, - [781] = 781, + [779] = 769, + [780] = 780, + [781] = 776, [782] = 782, [783] = 783, - [784] = 784, - [785] = 781, - [786] = 786, + [784] = 775, + [785] = 785, + [786] = 770, [787] = 787, - [788] = 767, - [789] = 772, - [790] = 782, - [791] = 768, - [792] = 792, - [793] = 782, - [794] = 794, - [795] = 779, - [796] = 779, - [797] = 769, - [798] = 782, - [799] = 773, - [800] = 800, - [801] = 765, - [802] = 779, - [803] = 770, - [804] = 770, - [805] = 768, - [806] = 767, - [807] = 770, - [808] = 781, - [809] = 771, - [810] = 768, - [811] = 767, - [812] = 771, - [813] = 766, - [814] = 781, - [815] = 783, - [816] = 769, - [817] = 773, - [818] = 818, - [819] = 765, - [820] = 769, - [821] = 773, - [822] = 772, - [823] = 766, - [824] = 616, - [825] = 825, + [788] = 788, + [789] = 789, + [790] = 785, + [791] = 791, + [792] = 776, + [793] = 771, + [794] = 772, + [795] = 788, + [796] = 796, + [797] = 788, + [798] = 783, + [799] = 799, + [800] = 783, + [801] = 773, + [802] = 769, + [803] = 788, + [804] = 777, + [805] = 780, + [806] = 775, + [807] = 783, + [808] = 808, + [809] = 777, + [810] = 774, + [811] = 774, + [812] = 772, + [813] = 771, + [814] = 785, + [815] = 773, + [816] = 785, + [817] = 775, + [818] = 780, + [819] = 769, + [820] = 773, + [821] = 771, + [822] = 777, + [823] = 772, + [824] = 774, + [825] = 780, [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 827, - [831] = 831, + [827] = 776, + [828] = 626, + [829] = 596, + [830] = 830, + [831] = 633, [832] = 832, [833] = 833, [834] = 834, - [835] = 631, + [835] = 835, [836] = 836, - [837] = 606, + [837] = 837, [838] = 838, [839] = 839, - [840] = 630, - [841] = 595, - [842] = 612, - [843] = 843, + [840] = 597, + [841] = 841, + [842] = 842, + [843] = 639, [844] = 844, - [845] = 845, - [846] = 615, - [847] = 620, + [845] = 617, + [846] = 619, + [847] = 847, [848] = 848, - [849] = 833, + [849] = 849, [850] = 850, - [851] = 851, + [851] = 629, [852] = 852, - [853] = 853, - [854] = 598, + [853] = 836, + [854] = 854, [855] = 855, [856] = 856, - [857] = 827, + [857] = 628, [858] = 858, - [859] = 627, - [860] = 860, - [861] = 833, - [862] = 862, - [863] = 827, - [864] = 864, + [859] = 859, + [860] = 621, + [861] = 861, + [862] = 833, + [863] = 863, + [864] = 833, [865] = 865, - [866] = 866, + [866] = 836, [867] = 867, - [868] = 594, - [869] = 591, - [870] = 592, - [871] = 833, - [872] = 872, - [873] = 872, - [874] = 872, - [875] = 872, + [868] = 868, + [869] = 869, + [870] = 833, + [871] = 871, + [872] = 620, + [873] = 625, + [874] = 615, + [875] = 836, [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, + [877] = 876, + [878] = 876, + [879] = 876, [880] = 880, [881] = 881, [882] = 882, @@ -3519,19 +3526,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [885] = 885, [886] = 886, [887] = 887, - [888] = 647, + [888] = 888, [889] = 889, - [890] = 887, - [891] = 887, - [892] = 889, - [893] = 886, - [894] = 887, - [895] = 886, - [896] = 886, - [897] = 897, + [890] = 890, + [891] = 891, + [892] = 890, + [893] = 891, + [894] = 891, + [895] = 891, + [896] = 890, + [897] = 650, [898] = 898, - [899] = 899, - [900] = 900, + [899] = 890, + [900] = 898, [901] = 901, [902] = 902, [903] = 903, @@ -3554,25 +3561,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [920] = 920, [921] = 921, [922] = 922, - [923] = 922, - [924] = 920, + [923] = 923, + [924] = 924, [925] = 925, - [926] = 921, - [927] = 927, - [928] = 928, + [926] = 926, + [927] = 925, + [928] = 926, [929] = 929, - [930] = 930, + [930] = 924, [931] = 931, - [932] = 624, + [932] = 932, [933] = 933, - [934] = 934, + [934] = 614, [935] = 935, [936] = 936, [937] = 937, [938] = 938, - [939] = 939, + [939] = 932, [940] = 940, - [941] = 933, + [941] = 941, [942] = 942, [943] = 943, [944] = 944, @@ -3581,108 +3588,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [947] = 947, [948] = 948, [949] = 949, - [950] = 950, + [950] = 931, [951] = 951, - [952] = 927, - [953] = 953, + [952] = 952, + [953] = 951, [954] = 954, [955] = 955, - [956] = 956, + [956] = 951, [957] = 957, - [958] = 958, + [958] = 954, [959] = 959, - [960] = 942, + [960] = 951, [961] = 961, - [962] = 946, - [963] = 930, + [962] = 962, + [963] = 963, [964] = 964, - [965] = 959, - [966] = 930, + [965] = 935, + [966] = 966, [967] = 967, - [968] = 964, + [968] = 968, [969] = 969, - [970] = 970, + [970] = 957, [971] = 971, - [972] = 964, + [972] = 972, [973] = 973, - [974] = 930, - [975] = 950, + [974] = 947, + [975] = 975, [976] = 976, - [977] = 977, - [978] = 928, + [977] = 946, + [978] = 978, [979] = 979, - [980] = 980, - [981] = 951, - [982] = 982, - [983] = 957, + [980] = 936, + [981] = 981, + [982] = 943, + [983] = 937, [984] = 984, - [985] = 973, - [986] = 953, - [987] = 970, - [988] = 935, - [989] = 989, - [990] = 990, - [991] = 961, - [992] = 984, - [993] = 786, - [994] = 934, - [995] = 956, + [985] = 985, + [986] = 986, + [987] = 941, + [988] = 938, + [989] = 954, + [990] = 940, + [991] = 991, + [992] = 992, + [993] = 966, + [994] = 994, + [995] = 995, [996] = 996, - [997] = 977, - [998] = 955, - [999] = 954, - [1000] = 1000, - [1001] = 949, + [997] = 997, + [998] = 614, + [999] = 986, + [1000] = 948, + [1001] = 959, [1002] = 1002, - [1003] = 947, - [1004] = 1004, - [1005] = 624, + [1003] = 985, + [1004] = 979, + [1005] = 997, [1006] = 1006, - [1007] = 945, - [1008] = 937, - [1009] = 936, - [1010] = 943, - [1011] = 1011, - [1012] = 1004, + [1007] = 1007, + [1008] = 961, + [1009] = 972, + [1010] = 933, + [1011] = 963, + [1012] = 964, [1013] = 1013, - [1014] = 931, + [1014] = 994, [1015] = 1015, - [1016] = 929, + [1016] = 967, [1017] = 1017, - [1018] = 1018, - [1019] = 1002, - [1020] = 1004, - [1021] = 979, - [1022] = 1004, - [1023] = 971, - [1024] = 1013, - [1025] = 1025, - [1026] = 1013, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, - [1030] = 1030, + [1018] = 969, + [1019] = 971, + [1020] = 994, + [1021] = 973, + [1022] = 975, + [1023] = 1023, + [1024] = 976, + [1025] = 978, + [1026] = 1026, + [1027] = 997, + [1028] = 997, + [1029] = 1007, + [1030] = 789, [1031] = 1031, [1032] = 1032, - [1033] = 1031, - [1034] = 1031, - [1035] = 878, - [1036] = 1031, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 881, [1037] = 1037, [1038] = 1038, [1039] = 1037, - [1040] = 1038, - [1041] = 1041, - [1042] = 1032, + [1040] = 1035, + [1041] = 1035, + [1042] = 1042, [1043] = 1037, - [1044] = 1037, - [1045] = 1032, - [1046] = 1038, + [1044] = 1038, + [1045] = 1035, + [1046] = 1046, [1047] = 1038, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, + [1048] = 1046, + [1049] = 1037, + [1050] = 1046, + [1051] = 1038, [1052] = 1052, [1053] = 1053, [1054] = 1054, @@ -3690,76 +3697,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1048, + [1059] = 1059, [1060] = 1060, - [1061] = 1060, + [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1053, - [1067] = 1053, - [1068] = 1048, - [1069] = 1053, - [1070] = 1070, - [1071] = 1048, + [1066] = 1065, + [1067] = 1056, + [1068] = 1056, + [1069] = 1069, + [1070] = 1065, + [1071] = 1063, [1072] = 1072, - [1073] = 1052, + [1073] = 1065, [1074] = 1074, - [1075] = 1060, - [1076] = 1076, - [1077] = 1052, + [1075] = 1052, + [1076] = 1063, + [1077] = 1063, [1078] = 1078, [1079] = 1079, [1080] = 1080, - [1081] = 1081, + [1081] = 1052, [1082] = 1082, [1083] = 1083, - [1084] = 1083, - [1085] = 1083, + [1084] = 1084, + [1085] = 1084, [1086] = 1086, - [1087] = 1087, + [1087] = 1084, [1088] = 1088, - [1089] = 1083, + [1089] = 1089, [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1093, - [1096] = 1096, - [1097] = 1094, + [1095] = 1095, + [1096] = 1084, + [1097] = 1097, [1098] = 1098, - [1099] = 1094, - [1100] = 1093, - [1101] = 1093, - [1102] = 1094, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, + [1099] = 1097, + [1100] = 1100, + [1101] = 1098, + [1102] = 1102, + [1103] = 1098, + [1104] = 1097, + [1105] = 1098, + [1106] = 1097, [1107] = 1107, - [1108] = 1103, - [1109] = 1103, - [1110] = 1103, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, + [1112] = 1107, + [1113] = 1107, + [1114] = 1107, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1117, + [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 1117, - [1123] = 1123, - [1124] = 1117, + [1122] = 1122, + [1123] = 1121, + [1124] = 1124, [1125] = 1125, - [1126] = 1126, + [1126] = 1121, [1127] = 1127, - [1128] = 1128, + [1128] = 1121, [1129] = 1129, [1130] = 1130, [1131] = 1131, @@ -3814,31 +3821,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1180] = 1180, [1181] = 1181, [1182] = 1182, - [1183] = 1182, - [1184] = 1184, + [1183] = 1183, + [1184] = 1182, [1185] = 1185, - [1186] = 1178, + [1186] = 1186, [1187] = 1187, [1188] = 1188, - [1189] = 1189, - [1190] = 1178, - [1191] = 1189, - [1192] = 1178, + [1189] = 1183, + [1190] = 1182, + [1191] = 1182, + [1192] = 1182, [1193] = 1193, - [1194] = 1194, + [1194] = 1182, [1195] = 1195, - [1196] = 1178, + [1196] = 1183, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1189, - [1202] = 1178, - [1203] = 1178, - [1204] = 1182, - [1205] = 1205, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1185, + [1205] = 1182, [1206] = 1206, - [1207] = 1207, + [1207] = 1185, [1208] = 1208, [1209] = 1209, [1210] = 1210, @@ -3846,159 +3853,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1212, + [1215] = 1215, [1216] = 1216, - [1217] = 1217, + [1217] = 1216, [1218] = 1218, - [1219] = 1209, + [1219] = 1219, [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1223, + [1223] = 1213, [1224] = 1224, - [1225] = 1205, + [1225] = 1225, [1226] = 1226, - [1227] = 1205, + [1227] = 1227, [1228] = 1228, - [1229] = 1207, + [1229] = 1209, [1230] = 1230, [1231] = 1231, - [1232] = 1232, - [1233] = 1233, + [1232] = 1209, + [1233] = 1211, [1234] = 1234, [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1206, + [1239] = 1239, [1240] = 1240, - [1241] = 1241, + [1241] = 1237, [1242] = 1242, [1243] = 1243, - [1244] = 1207, + [1244] = 1244, [1245] = 1245, - [1246] = 1246, - [1247] = 1236, - [1248] = 1245, + [1246] = 1211, + [1247] = 1247, + [1248] = 1248, [1249] = 1249, - [1250] = 1206, + [1250] = 1248, [1251] = 1251, [1252] = 1252, - [1253] = 1214, - [1254] = 1254, + [1253] = 1253, + [1254] = 1242, [1255] = 1255, - [1256] = 1252, - [1257] = 1257, - [1258] = 1243, - [1259] = 1259, - [1260] = 1260, - [1261] = 1236, + [1256] = 1256, + [1257] = 1218, + [1258] = 1247, + [1259] = 1237, + [1260] = 1251, + [1261] = 1261, [1262] = 1262, [1263] = 1263, - [1264] = 1216, - [1265] = 1245, + [1264] = 1242, + [1265] = 1220, [1266] = 1266, [1267] = 1267, [1268] = 1268, - [1269] = 1252, - [1270] = 1216, + [1269] = 1248, + [1270] = 1270, [1271] = 1271, - [1272] = 1224, - [1273] = 1235, - [1274] = 1245, + [1272] = 1220, + [1273] = 1251, + [1274] = 1274, [1275] = 1275, - [1276] = 1234, - [1277] = 1277, - [1278] = 1278, + [1276] = 1276, + [1277] = 1226, + [1278] = 1248, [1279] = 1279, - [1280] = 1262, - [1281] = 1281, - [1282] = 1214, - [1283] = 1205, - [1284] = 1284, - [1285] = 1285, - [1286] = 1206, - [1287] = 1236, + [1280] = 1239, + [1281] = 1238, + [1282] = 1282, + [1283] = 1283, + [1284] = 1266, + [1285] = 1209, + [1286] = 1218, + [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 1234, - [1291] = 1235, + [1290] = 1242, + [1291] = 1237, [1292] = 1292, - [1293] = 1207, - [1294] = 1252, - [1295] = 1295, - [1296] = 1262, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, + [1293] = 1293, + [1294] = 1294, + [1295] = 1238, + [1296] = 1296, + [1297] = 1211, + [1298] = 1251, + [1299] = 1266, [1300] = 1300, - [1301] = 1301, + [1301] = 1239, [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, [1306] = 1306, - [1307] = 1304, + [1307] = 1307, [1308] = 1308, [1309] = 1309, - [1310] = 1306, + [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1298, - [1314] = 1314, - [1315] = 1315, + [1313] = 1313, + [1314] = 1311, + [1315] = 1308, [1316] = 1316, - [1317] = 1315, - [1318] = 1304, - [1319] = 1319, - [1320] = 1314, - [1321] = 1306, - [1322] = 1299, - [1323] = 1319, - [1324] = 1319, - [1325] = 1316, - [1326] = 1306, - [1327] = 1327, - [1328] = 1319, - [1329] = 1319, - [1330] = 1306, - [1331] = 1308, - [1332] = 1306, - [1333] = 1300, - [1334] = 1299, - [1335] = 1316, - [1336] = 1336, - [1337] = 1337, + [1317] = 1302, + [1318] = 1318, + [1319] = 1308, + [1320] = 1303, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1322, + [1325] = 1318, + [1326] = 1311, + [1327] = 1321, + [1328] = 1311, + [1329] = 1303, + [1330] = 1323, + [1331] = 1331, + [1332] = 1311, + [1333] = 1323, + [1334] = 1321, + [1335] = 1312, + [1336] = 1323, + [1337] = 1304, [1338] = 1338, - [1339] = 1339, - [1340] = 1304, + [1339] = 1311, + [1340] = 1340, [1341] = 1341, - [1342] = 1300, - [1343] = 1315, - [1344] = 1306, - [1345] = 1308, - [1346] = 1346, - [1347] = 1347, - [1348] = 1319, - [1349] = 1349, - [1350] = 1299, - [1351] = 1300, - [1352] = 1315, - [1353] = 1308, + [1342] = 1304, + [1343] = 1343, + [1344] = 1308, + [1345] = 1345, + [1346] = 1322, + [1347] = 1312, + [1348] = 1311, + [1349] = 1323, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1303, [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, + [1355] = 1304, + [1356] = 1322, + [1357] = 1312, [1358] = 1358, - [1359] = 1314, + [1359] = 1359, [1360] = 1360, - [1361] = 1319, - [1362] = 1362, + [1361] = 1361, + [1362] = 1318, [1363] = 1363, - [1364] = 1364, + [1364] = 1323, [1365] = 1365, [1366] = 1366, - [1367] = 1367, + [1367] = 1323, [1368] = 1368, [1369] = 1369, [1370] = 1370, @@ -4009,201 +4016,205 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1378, + [1378] = 1376, [1379] = 1379, - [1380] = 1380, + [1380] = 1369, [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1368, + [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1380, + [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 1367, - [1391] = 1391, + [1389] = 1372, + [1390] = 1390, + [1391] = 1384, [1392] = 1392, - [1393] = 1370, + [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 1388, - [1397] = 1385, - [1398] = 1382, - [1399] = 1399, - [1400] = 1367, - [1401] = 1401, - [1402] = 1377, - [1403] = 1385, - [1404] = 1382, - [1405] = 1394, - [1406] = 1367, - [1407] = 1407, - [1408] = 1391, - [1409] = 1385, - [1410] = 1382, - [1411] = 1389, - [1412] = 1367, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, + [1396] = 1371, + [1397] = 1397, + [1398] = 1398, + [1399] = 1374, + [1400] = 1400, + [1401] = 1390, + [1402] = 1388, + [1403] = 1397, + [1404] = 1371, + [1405] = 1405, + [1406] = 1381, + [1407] = 1390, + [1408] = 1388, + [1409] = 1409, + [1410] = 1371, + [1411] = 1398, + [1412] = 1412, + [1413] = 1390, + [1414] = 1388, + [1415] = 1395, [1416] = 1371, - [1417] = 1366, + [1417] = 1417, [1418] = 1418, - [1419] = 1364, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1374, + [1419] = 1419, + [1420] = 1382, + [1421] = 1375, + [1422] = 1393, + [1423] = 1423, [1424] = 1424, - [1425] = 1382, - [1426] = 1426, - [1427] = 1383, - [1428] = 1380, - [1429] = 1401, + [1425] = 1425, + [1426] = 1368, + [1427] = 1427, + [1428] = 1428, + [1429] = 1388, [1430] = 1430, - [1431] = 1430, - [1432] = 1432, - [1433] = 1377, - [1434] = 1399, - [1435] = 1380, - [1436] = 1374, - [1437] = 1383, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1392, - [1444] = 1432, + [1431] = 1387, + [1432] = 1384, + [1433] = 1409, + [1434] = 1434, + [1435] = 1435, + [1436] = 1381, + [1437] = 1434, + [1438] = 1405, + [1439] = 1376, + [1440] = 1394, + [1441] = 1384, + [1442] = 1387, + [1443] = 1443, + [1444] = 1444, [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1370, - [1449] = 1368, - [1450] = 1367, + [1448] = 1435, + [1449] = 1449, + [1450] = 1450, [1451] = 1451, - [1452] = 1451, - [1453] = 1385, - [1454] = 1454, - [1455] = 1373, - [1456] = 1456, - [1457] = 1375, + [1452] = 1374, + [1453] = 1372, + [1454] = 1371, + [1455] = 1455, + [1456] = 1455, + [1457] = 1390, [1458] = 1458, - [1459] = 1456, + [1459] = 1377, [1460] = 1460, - [1461] = 1438, - [1462] = 1454, - [1463] = 1386, - [1464] = 1451, - [1465] = 1385, - [1466] = 583, - [1467] = 1382, - [1468] = 1424, - [1469] = 1446, - [1470] = 1422, - [1471] = 1376, - [1472] = 1366, - [1473] = 1446, - [1474] = 1371, - [1475] = 1392, - [1476] = 1364, - [1477] = 1389, - [1478] = 1391, - [1479] = 1414, - [1480] = 1415, - [1481] = 1481, - [1482] = 1482, - [1483] = 1366, - [1484] = 1371, - [1485] = 1485, - [1486] = 1421, - [1487] = 1376, - [1488] = 1488, + [1461] = 1379, + [1462] = 1462, + [1463] = 1460, + [1464] = 1464, + [1465] = 1443, + [1466] = 1458, + [1467] = 1392, + [1468] = 587, + [1469] = 1390, + [1470] = 1455, + [1471] = 1388, + [1472] = 1472, + [1473] = 1447, + [1474] = 1428, + [1475] = 1427, + [1476] = 1375, + [1477] = 1447, + [1478] = 1382, + [1479] = 1397, + [1480] = 1375, + [1481] = 1368, + [1482] = 1393, + [1483] = 1418, + [1484] = 1419, + [1485] = 1395, + [1486] = 1486, + [1487] = 1382, + [1488] = 1369, [1489] = 1489, - [1490] = 1382, - [1491] = 1456, + [1490] = 1425, + [1491] = 1388, [1492] = 1492, - [1493] = 1385, - [1494] = 1447, - [1495] = 1495, - [1496] = 1446, - [1497] = 1392, + [1493] = 1493, + [1494] = 1494, + [1495] = 1460, + [1496] = 1390, + [1497] = 1497, [1498] = 1451, - [1499] = 1386, - [1500] = 1373, - [1501] = 1407, - [1502] = 1375, - [1503] = 1503, - [1504] = 1388, - [1505] = 1438, - [1506] = 1394, - [1507] = 1414, - [1508] = 1415, - [1509] = 1509, - [1510] = 1399, - [1511] = 1421, - [1512] = 1421, - [1513] = 1401, + [1499] = 1392, + [1500] = 1447, + [1501] = 1397, + [1502] = 1455, + [1503] = 1392, + [1504] = 1377, + [1505] = 1394, + [1506] = 1379, + [1507] = 1507, + [1508] = 1405, + [1509] = 1443, + [1510] = 1412, + [1511] = 1418, + [1512] = 1419, + [1513] = 1513, [1514] = 1514, - [1515] = 1515, - [1516] = 1367, - [1517] = 1517, - [1518] = 1381, - [1519] = 1388, - [1520] = 1399, - [1521] = 1368, - [1522] = 1373, - [1523] = 1523, - [1524] = 1375, - [1525] = 1525, - [1526] = 1370, - [1527] = 1438, - [1528] = 1414, - [1529] = 1414, - [1530] = 1414, - [1531] = 1531, - [1532] = 1386, - [1533] = 1401, - [1534] = 1447, + [1515] = 1425, + [1516] = 1425, + [1517] = 1409, + [1518] = 1398, + [1519] = 1371, + [1520] = 1520, + [1521] = 1521, + [1522] = 1386, + [1523] = 1394, + [1524] = 1405, + [1525] = 1372, + [1526] = 1377, + [1527] = 1527, + [1528] = 1379, + [1529] = 1529, + [1530] = 1374, + [1531] = 1443, + [1532] = 1418, + [1533] = 1418, + [1534] = 1418, [1535] = 1535, - [1536] = 1430, - [1537] = 1537, + [1536] = 1451, + [1537] = 1409, [1538] = 1538, - [1539] = 1456, + [1539] = 1434, [1540] = 1540, - [1541] = 1426, - [1542] = 1394, - [1543] = 1543, - [1544] = 1544, - [1545] = 1407, - [1546] = 1546, - [1547] = 1365, - [1548] = 582, + [1541] = 1541, + [1542] = 1542, + [1543] = 1460, + [1544] = 1398, + [1545] = 1430, + [1546] = 1412, + [1547] = 1547, + [1548] = 1548, [1549] = 1549, - [1550] = 1391, - [1551] = 1551, - [1552] = 1377, - [1553] = 1426, - [1554] = 1389, + [1550] = 1395, + [1551] = 1472, + [1552] = 1552, + [1553] = 1553, + [1554] = 1381, [1555] = 1555, - [1556] = 1364, - [1557] = 1365, - [1558] = 1558, - [1559] = 1374, + [1556] = 1393, + [1557] = 1430, + [1558] = 1368, + [1559] = 586, [1560] = 1560, - [1561] = 1422, - [1562] = 1426, - [1563] = 1424, + [1561] = 1472, + [1562] = 1376, + [1563] = 1563, [1564] = 1564, - [1565] = 1365, - [1566] = 1566, - [1567] = 1415, - [1568] = 1525, - [1569] = 1383, - [1570] = 1525, - [1571] = 1414, - [1572] = 1525, + [1565] = 1427, + [1566] = 1430, + [1567] = 1428, + [1568] = 1568, + [1569] = 1472, + [1570] = 1570, + [1571] = 1419, + [1572] = 1529, + [1573] = 1387, + [1574] = 1529, + [1575] = 1418, + [1576] = 1529, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -8610,17 +8621,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) END_STATE(); case 10: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) END_STATE(); case 12: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: @@ -8894,10 +8905,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(168); if (lookahead == '?') ADVANCE(190); if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(12) - if (lookahead == ']') ADVANCE(51); + if (lookahead == '\\') SKIP(10) + if (lookahead == ']') ADVANCE(186); if (lookahead == '^') ADVANCE(162); if (sym_identifier_character_set_3(lookahead)) ADVANCE(259); + if (lookahead == '{') ADVANCE(182); if (lookahead == '|') ADVANCE(159); if (lookahead == '}') ADVANCE(183); if (lookahead == '\t' || @@ -8955,11 +8967,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(168); if (lookahead == '?') ADVANCE(190); if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(10) - if (lookahead == ']') ADVANCE(186); + if (lookahead == '\\') SKIP(12) + if (lookahead == ']') ADVANCE(51); if (lookahead == '^') ADVANCE(162); if (sym_identifier_character_set_3(lookahead)) ADVANCE(259); - if (lookahead == '{') ADVANCE(182); if (lookahead == '|') ADVANCE(159); if (lookahead == '}') ADVANCE(183); if (lookahead == '\t' || @@ -11651,45 +11662,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 28}, [20] = {.lex_state = 28}, [21] = {.lex_state = 83}, - [22] = {.lex_state = 29}, + [22] = {.lex_state = 83}, [23] = {.lex_state = 83}, [24] = {.lex_state = 83}, - [25] = {.lex_state = 83}, + [25] = {.lex_state = 29}, [26] = {.lex_state = 83}, [27] = {.lex_state = 83}, [28] = {.lex_state = 83}, - [29] = {.lex_state = 83}, + [29] = {.lex_state = 29}, [30] = {.lex_state = 83}, [31] = {.lex_state = 83}, [32] = {.lex_state = 83}, - [33] = {.lex_state = 83}, + [33] = {.lex_state = 29}, [34] = {.lex_state = 83}, [35] = {.lex_state = 83}, [36] = {.lex_state = 83}, - [37] = {.lex_state = 29}, + [37] = {.lex_state = 83}, [38] = {.lex_state = 83}, [39] = {.lex_state = 83}, [40] = {.lex_state = 83}, - [41] = {.lex_state = 29}, + [41] = {.lex_state = 83}, [42] = {.lex_state = 83}, [43] = {.lex_state = 28}, [44] = {.lex_state = 28}, [45] = {.lex_state = 28}, [46] = {.lex_state = 28}, [47] = {.lex_state = 28}, - [48] = {.lex_state = 83}, - [49] = {.lex_state = 29}, - [50] = {.lex_state = 83}, + [48] = {.lex_state = 29}, + [49] = {.lex_state = 83}, + [50] = {.lex_state = 29}, [51] = {.lex_state = 83}, - [52] = {.lex_state = 83}, + [52] = {.lex_state = 29}, [53] = {.lex_state = 83}, [54] = {.lex_state = 83}, [55] = {.lex_state = 29}, [56] = {.lex_state = 83}, [57] = {.lex_state = 83}, [58] = {.lex_state = 83}, - [59] = {.lex_state = 29}, - [60] = {.lex_state = 29}, + [59] = {.lex_state = 83}, + [60] = {.lex_state = 83}, [61] = {.lex_state = 83}, [62] = {.lex_state = 29}, [63] = {.lex_state = 83}, @@ -11704,17 +11715,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 28}, [73] = {.lex_state = 28}, [74] = {.lex_state = 28}, - [75] = {.lex_state = 28}, + [75] = {.lex_state = 83}, [76] = {.lex_state = 28}, [77] = {.lex_state = 28}, [78] = {.lex_state = 28}, [79] = {.lex_state = 28}, [80] = {.lex_state = 28}, - [81] = {.lex_state = 83}, + [81] = {.lex_state = 28}, [82] = {.lex_state = 28}, - [83] = {.lex_state = 27}, - [84] = {.lex_state = 83}, - [85] = {.lex_state = 28}, + [83] = {.lex_state = 28}, + [84] = {.lex_state = 28}, + [85] = {.lex_state = 83}, [86] = {.lex_state = 28}, [87] = {.lex_state = 28}, [88] = {.lex_state = 28}, @@ -11733,22 +11744,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 28}, [102] = {.lex_state = 28}, [103] = {.lex_state = 28}, - [104] = {.lex_state = 28}, + [104] = {.lex_state = 27}, [105] = {.lex_state = 28}, [106] = {.lex_state = 28}, - [107] = {.lex_state = 83}, + [107] = {.lex_state = 28}, [108] = {.lex_state = 83}, [109] = {.lex_state = 83}, [110] = {.lex_state = 83}, - [111] = {.lex_state = 83}, - [112] = {.lex_state = 83}, - [113] = {.lex_state = 83}, - [114] = {.lex_state = 83}, - [115] = {.lex_state = 83}, - [116] = {.lex_state = 83}, + [111] = {.lex_state = 28}, + [112] = {.lex_state = 28}, + [113] = {.lex_state = 28}, + [114] = {.lex_state = 28}, + [115] = {.lex_state = 28}, + [116] = {.lex_state = 28}, [117] = {.lex_state = 83}, [118] = {.lex_state = 83}, - [119] = {.lex_state = 83}, + [119] = {.lex_state = 28}, [120] = {.lex_state = 83}, [121] = {.lex_state = 83}, [122] = {.lex_state = 83}, @@ -11769,56 +11780,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 83}, [138] = {.lex_state = 83}, [139] = {.lex_state = 83}, - [140] = {.lex_state = 83}, + [140] = {.lex_state = 28}, [141] = {.lex_state = 83}, [142] = {.lex_state = 83}, - [143] = {.lex_state = 83}, - [144] = {.lex_state = 83}, - [145] = {.lex_state = 83}, - [146] = {.lex_state = 83}, - [147] = {.lex_state = 28}, - [148] = {.lex_state = 83}, + [143] = {.lex_state = 28}, + [144] = {.lex_state = 28}, + [145] = {.lex_state = 28}, + [146] = {.lex_state = 28}, + [147] = {.lex_state = 83}, + [148] = {.lex_state = 28}, [149] = {.lex_state = 83}, [150] = {.lex_state = 83}, - [151] = {.lex_state = 83}, - [152] = {.lex_state = 28}, - [153] = {.lex_state = 28}, - [154] = {.lex_state = 28}, - [155] = {.lex_state = 28}, - [156] = {.lex_state = 28}, - [157] = {.lex_state = 28}, - [158] = {.lex_state = 83}, + [151] = {.lex_state = 28}, + [152] = {.lex_state = 83}, + [153] = {.lex_state = 83}, + [154] = {.lex_state = 83}, + [155] = {.lex_state = 83}, + [156] = {.lex_state = 83}, + [157] = {.lex_state = 83}, + [158] = {.lex_state = 28}, [159] = {.lex_state = 83}, [160] = {.lex_state = 83}, - [161] = {.lex_state = 28}, - [162] = {.lex_state = 83}, - [163] = {.lex_state = 28}, + [161] = {.lex_state = 29}, + [162] = {.lex_state = 28}, + [163] = {.lex_state = 83}, [164] = {.lex_state = 28}, - [165] = {.lex_state = 83}, - [166] = {.lex_state = 28}, + [165] = {.lex_state = 28}, + [166] = {.lex_state = 83}, [167] = {.lex_state = 83}, [168] = {.lex_state = 28}, [169] = {.lex_state = 83}, [170] = {.lex_state = 83}, - [171] = {.lex_state = 28}, + [171] = {.lex_state = 83}, [172] = {.lex_state = 83}, - [173] = {.lex_state = 28}, + [173] = {.lex_state = 83}, [174] = {.lex_state = 83}, [175] = {.lex_state = 83}, - [176] = {.lex_state = 83}, - [177] = {.lex_state = 28}, - [178] = {.lex_state = 28}, - [179] = {.lex_state = 28}, - [180] = {.lex_state = 28}, - [181] = {.lex_state = 28}, + [176] = {.lex_state = 28}, + [177] = {.lex_state = 83}, + [178] = {.lex_state = 83}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 83}, + [181] = {.lex_state = 83}, [182] = {.lex_state = 83}, - [183] = {.lex_state = 28}, + [183] = {.lex_state = 83}, [184] = {.lex_state = 83}, [185] = {.lex_state = 83}, - [186] = {.lex_state = 83}, + [186] = {.lex_state = 28}, [187] = {.lex_state = 83}, [188] = {.lex_state = 83}, - [189] = {.lex_state = 28}, + [189] = {.lex_state = 83}, [190] = {.lex_state = 83}, [191] = {.lex_state = 83}, [192] = {.lex_state = 83}, @@ -11835,146 +11846,146 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 83}, [204] = {.lex_state = 83}, [205] = {.lex_state = 83}, - [206] = {.lex_state = 29}, + [206] = {.lex_state = 83}, [207] = {.lex_state = 83}, [208] = {.lex_state = 83}, [209] = {.lex_state = 83}, - [210] = {.lex_state = 29}, - [211] = {.lex_state = 29}, + [210] = {.lex_state = 83}, + [211] = {.lex_state = 83}, [212] = {.lex_state = 83}, [213] = {.lex_state = 83}, - [214] = {.lex_state = 29}, + [214] = {.lex_state = 83}, [215] = {.lex_state = 83}, [216] = {.lex_state = 83}, - [217] = {.lex_state = 83}, + [217] = {.lex_state = 29}, [218] = {.lex_state = 83}, - [219] = {.lex_state = 29}, + [219] = {.lex_state = 83}, [220] = {.lex_state = 83}, [221] = {.lex_state = 83}, - [222] = {.lex_state = 83}, + [222] = {.lex_state = 29}, [223] = {.lex_state = 29}, [224] = {.lex_state = 83}, [225] = {.lex_state = 83}, - [226] = {.lex_state = 83}, + [226] = {.lex_state = 29}, [227] = {.lex_state = 29}, [228] = {.lex_state = 83}, [229] = {.lex_state = 83}, [230] = {.lex_state = 83}, - [231] = {.lex_state = 83}, + [231] = {.lex_state = 29}, [232] = {.lex_state = 83}, [233] = {.lex_state = 83}, [234] = {.lex_state = 83}, - [235] = {.lex_state = 29}, + [235] = {.lex_state = 83}, [236] = {.lex_state = 83}, [237] = {.lex_state = 83}, [238] = {.lex_state = 83}, [239] = {.lex_state = 29}, - [240] = {.lex_state = 29}, + [240] = {.lex_state = 83}, [241] = {.lex_state = 83}, - [242] = {.lex_state = 29}, - [243] = {.lex_state = 29}, + [242] = {.lex_state = 83}, + [243] = {.lex_state = 83}, [244] = {.lex_state = 83}, [245] = {.lex_state = 83}, [246] = {.lex_state = 83}, - [247] = {.lex_state = 29}, - [248] = {.lex_state = 83}, - [249] = {.lex_state = 29}, + [247] = {.lex_state = 83}, + [248] = {.lex_state = 29}, + [249] = {.lex_state = 83}, [250] = {.lex_state = 83}, [251] = {.lex_state = 83}, - [252] = {.lex_state = 83}, - [253] = {.lex_state = 83}, - [254] = {.lex_state = 83}, + [252] = {.lex_state = 29}, + [253] = {.lex_state = 29}, + [254] = {.lex_state = 29}, [255] = {.lex_state = 29}, - [256] = {.lex_state = 83}, + [256] = {.lex_state = 29}, [257] = {.lex_state = 83}, [258] = {.lex_state = 83}, - [259] = {.lex_state = 83}, - [260] = {.lex_state = 29}, + [259] = {.lex_state = 29}, + [260] = {.lex_state = 83}, [261] = {.lex_state = 83}, [262] = {.lex_state = 83}, [263] = {.lex_state = 83}, - [264] = {.lex_state = 29}, + [264] = {.lex_state = 83}, [265] = {.lex_state = 83}, - [266] = {.lex_state = 29}, + [266] = {.lex_state = 83}, [267] = {.lex_state = 29}, [268] = {.lex_state = 29}, [269] = {.lex_state = 83}, - [270] = {.lex_state = 29}, - [271] = {.lex_state = 83}, + [270] = {.lex_state = 83}, + [271] = {.lex_state = 29}, [272] = {.lex_state = 83}, [273] = {.lex_state = 83}, - [274] = {.lex_state = 83}, + [274] = {.lex_state = 29}, [275] = {.lex_state = 29}, [276] = {.lex_state = 83}, - [277] = {.lex_state = 83}, + [277] = {.lex_state = 29}, [278] = {.lex_state = 83}, [279] = {.lex_state = 83}, - [280] = {.lex_state = 29}, - [281] = {.lex_state = 83}, + [280] = {.lex_state = 83}, + [281] = {.lex_state = 29}, [282] = {.lex_state = 83}, - [283] = {.lex_state = 83}, - [284] = {.lex_state = 83}, + [283] = {.lex_state = 29}, + [284] = {.lex_state = 29}, [285] = {.lex_state = 83}, - [286] = {.lex_state = 29}, - [287] = {.lex_state = 29}, - [288] = {.lex_state = 83}, - [289] = {.lex_state = 83}, + [286] = {.lex_state = 83}, + [287] = {.lex_state = 83}, + [288] = {.lex_state = 29}, + [289] = {.lex_state = 29}, [290] = {.lex_state = 83}, [291] = {.lex_state = 83}, [292] = {.lex_state = 83}, [293] = {.lex_state = 83}, - [294] = {.lex_state = 29}, + [294] = {.lex_state = 83}, [295] = {.lex_state = 83}, - [296] = {.lex_state = 29}, - [297] = {.lex_state = 29}, + [296] = {.lex_state = 83}, + [297] = {.lex_state = 83}, [298] = {.lex_state = 29}, - [299] = {.lex_state = 29}, + [299] = {.lex_state = 83}, [300] = {.lex_state = 83}, - [301] = {.lex_state = 29}, - [302] = {.lex_state = 83}, - [303] = {.lex_state = 83}, + [301] = {.lex_state = 83}, + [302] = {.lex_state = 29}, + [303] = {.lex_state = 29}, [304] = {.lex_state = 29}, [305] = {.lex_state = 83}, [306] = {.lex_state = 29}, [307] = {.lex_state = 29}, [308] = {.lex_state = 29}, [309] = {.lex_state = 29}, - [310] = {.lex_state = 83}, - [311] = {.lex_state = 83}, - [312] = {.lex_state = 83}, - [313] = {.lex_state = 29}, - [314] = {.lex_state = 29}, + [310] = {.lex_state = 29}, + [311] = {.lex_state = 29}, + [312] = {.lex_state = 29}, + [313] = {.lex_state = 83}, + [314] = {.lex_state = 83}, [315] = {.lex_state = 83}, [316] = {.lex_state = 83}, [317] = {.lex_state = 83}, - [318] = {.lex_state = 29}, + [318] = {.lex_state = 83}, [319] = {.lex_state = 83}, [320] = {.lex_state = 83}, - [321] = {.lex_state = 29}, + [321] = {.lex_state = 83}, [322] = {.lex_state = 83}, [323] = {.lex_state = 83}, [324] = {.lex_state = 83}, - [325] = {.lex_state = 29}, - [326] = {.lex_state = 83}, + [325] = {.lex_state = 83}, + [326] = {.lex_state = 29}, [327] = {.lex_state = 83}, [328] = {.lex_state = 83}, [329] = {.lex_state = 83}, - [330] = {.lex_state = 83}, + [330] = {.lex_state = 29}, [331] = {.lex_state = 83}, [332] = {.lex_state = 83}, [333] = {.lex_state = 83}, [334] = {.lex_state = 29}, - [335] = {.lex_state = 29}, - [336] = {.lex_state = 29}, + [335] = {.lex_state = 83}, + [336] = {.lex_state = 83}, [337] = {.lex_state = 29}, - [338] = {.lex_state = 29}, - [339] = {.lex_state = 83}, + [338] = {.lex_state = 83}, + [339] = {.lex_state = 29}, [340] = {.lex_state = 83}, [341] = {.lex_state = 29}, - [342] = {.lex_state = 83}, - [343] = {.lex_state = 83}, + [342] = {.lex_state = 29}, + [343] = {.lex_state = 29}, [344] = {.lex_state = 83}, - [345] = {.lex_state = 83}, + [345] = {.lex_state = 29}, [346] = {.lex_state = 83}, [347] = {.lex_state = 83}, [348] = {.lex_state = 29}, @@ -11985,25 +11996,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [353] = {.lex_state = 83}, [354] = {.lex_state = 83}, [355] = {.lex_state = 83}, - [356] = {.lex_state = 83}, - [357] = {.lex_state = 83}, + [356] = {.lex_state = 29}, + [357] = {.lex_state = 29}, [358] = {.lex_state = 83}, - [359] = {.lex_state = 83}, - [360] = {.lex_state = 29}, + [359] = {.lex_state = 29}, + [360] = {.lex_state = 83}, [361] = {.lex_state = 83}, [362] = {.lex_state = 83}, - [363] = {.lex_state = 29}, + [363] = {.lex_state = 83}, [364] = {.lex_state = 29}, [365] = {.lex_state = 83}, - [366] = {.lex_state = 29}, + [366] = {.lex_state = 83}, [367] = {.lex_state = 29}, [368] = {.lex_state = 83}, - [369] = {.lex_state = 83}, + [369] = {.lex_state = 29}, [370] = {.lex_state = 83}, [371] = {.lex_state = 29}, [372] = {.lex_state = 83}, [373] = {.lex_state = 83}, - [374] = {.lex_state = 27}, + [374] = {.lex_state = 29}, [375] = {.lex_state = 83}, [376] = {.lex_state = 83}, [377] = {.lex_state = 83}, @@ -12011,15 +12022,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 83}, [380] = {.lex_state = 83}, [381] = {.lex_state = 83}, - [382] = {.lex_state = 27}, + [382] = {.lex_state = 83}, [383] = {.lex_state = 83}, [384] = {.lex_state = 83}, - [385] = {.lex_state = 83}, - [386] = {.lex_state = 83}, - [387] = {.lex_state = 33}, + [385] = {.lex_state = 27}, + [386] = {.lex_state = 27}, + [387] = {.lex_state = 83}, [388] = {.lex_state = 83}, [389] = {.lex_state = 83}, - [390] = {.lex_state = 83}, + [390] = {.lex_state = 33}, [391] = {.lex_state = 83}, [392] = {.lex_state = 83}, [393] = {.lex_state = 83}, @@ -12030,10 +12041,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 83}, [399] = {.lex_state = 83}, [400] = {.lex_state = 83}, - [401] = {.lex_state = 33}, - [402] = {.lex_state = 33}, - [403] = {.lex_state = 33}, - [404] = {.lex_state = 33}, + [401] = {.lex_state = 83}, + [402] = {.lex_state = 83}, + [403] = {.lex_state = 83}, + [404] = {.lex_state = 83}, [405] = {.lex_state = 33}, [406] = {.lex_state = 33}, [407] = {.lex_state = 33}, @@ -12044,35 +12055,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [412] = {.lex_state = 33}, [413] = {.lex_state = 33}, [414] = {.lex_state = 33}, - [415] = {.lex_state = 34}, - [416] = {.lex_state = 34}, - [417] = {.lex_state = 34}, - [418] = {.lex_state = 34}, - [419] = {.lex_state = 34}, - [420] = {.lex_state = 34}, - [421] = {.lex_state = 34}, - [422] = {.lex_state = 34}, - [423] = {.lex_state = 33}, - [424] = {.lex_state = 34}, - [425] = {.lex_state = 34}, - [426] = {.lex_state = 83}, - [427] = {.lex_state = 32}, + [415] = {.lex_state = 33}, + [416] = {.lex_state = 33}, + [417] = {.lex_state = 33}, + [418] = {.lex_state = 33}, + [419] = {.lex_state = 32}, + [420] = {.lex_state = 32}, + [421] = {.lex_state = 32}, + [422] = {.lex_state = 32}, + [423] = {.lex_state = 32}, + [424] = {.lex_state = 32}, + [425] = {.lex_state = 32}, + [426] = {.lex_state = 32}, + [427] = {.lex_state = 33}, [428] = {.lex_state = 32}, - [429] = {.lex_state = 83}, - [430] = {.lex_state = 34}, + [429] = {.lex_state = 32}, + [430] = {.lex_state = 32}, [431] = {.lex_state = 32}, [432] = {.lex_state = 34}, - [433] = {.lex_state = 83}, + [433] = {.lex_state = 34}, [434] = {.lex_state = 83}, [435] = {.lex_state = 83}, - [436] = {.lex_state = 83}, + [436] = {.lex_state = 34}, [437] = {.lex_state = 83}, [438] = {.lex_state = 83}, [439] = {.lex_state = 83}, [440] = {.lex_state = 83}, [441] = {.lex_state = 83}, [442] = {.lex_state = 83}, - [443] = {.lex_state = 83}, + [443] = {.lex_state = 33}, [444] = {.lex_state = 83}, [445] = {.lex_state = 83}, [446] = {.lex_state = 83}, @@ -12100,7 +12111,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [468] = {.lex_state = 83}, [469] = {.lex_state = 83}, [470] = {.lex_state = 83}, - [471] = {.lex_state = 33}, + [471] = {.lex_state = 83}, [472] = {.lex_state = 83}, [473] = {.lex_state = 83}, [474] = {.lex_state = 83}, @@ -12114,27 +12125,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 83}, [483] = {.lex_state = 83}, [484] = {.lex_state = 83}, - [485] = {.lex_state = 83}, + [485] = {.lex_state = 31}, [486] = {.lex_state = 83}, [487] = {.lex_state = 83}, [488] = {.lex_state = 83}, [489] = {.lex_state = 83}, [490] = {.lex_state = 83}, [491] = {.lex_state = 83}, - [492] = {.lex_state = 31}, + [492] = {.lex_state = 83}, [493] = {.lex_state = 83}, [494] = {.lex_state = 83}, [495] = {.lex_state = 83}, [496] = {.lex_state = 83}, - [497] = {.lex_state = 83}, - [498] = {.lex_state = 31}, - [499] = {.lex_state = 31}, + [497] = {.lex_state = 31}, + [498] = {.lex_state = 83}, + [499] = {.lex_state = 83}, [500] = {.lex_state = 83}, [501] = {.lex_state = 83}, - [502] = {.lex_state = 83}, + [502] = {.lex_state = 31}, [503] = {.lex_state = 83}, [504] = {.lex_state = 83}, - [505] = {.lex_state = 83}, + [505] = {.lex_state = 33}, [506] = {.lex_state = 83}, [507] = {.lex_state = 83}, [508] = {.lex_state = 83}, @@ -12150,11 +12161,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [518] = {.lex_state = 83}, [519] = {.lex_state = 83}, [520] = {.lex_state = 83}, - [521] = {.lex_state = 83}, + [521] = {.lex_state = 33}, [522] = {.lex_state = 83}, [523] = {.lex_state = 83}, [524] = {.lex_state = 83}, - [525] = {.lex_state = 33}, + [525] = {.lex_state = 83}, [526] = {.lex_state = 83}, [527] = {.lex_state = 83}, [528] = {.lex_state = 83}, @@ -12163,17 +12174,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [531] = {.lex_state = 83}, [532] = {.lex_state = 83}, [533] = {.lex_state = 83}, - [534] = {.lex_state = 33}, - [535] = {.lex_state = 83}, + [534] = {.lex_state = 83}, + [535] = {.lex_state = 33}, [536] = {.lex_state = 83}, [537] = {.lex_state = 83}, [538] = {.lex_state = 83}, - [539] = {.lex_state = 83}, + [539] = {.lex_state = 33}, [540] = {.lex_state = 83}, [541] = {.lex_state = 83}, [542] = {.lex_state = 83}, [543] = {.lex_state = 83}, - [544] = {.lex_state = 33}, + [544] = {.lex_state = 83}, [545] = {.lex_state = 83}, [546] = {.lex_state = 83}, [547] = {.lex_state = 83}, @@ -12196,7 +12207,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [564] = {.lex_state = 83}, [565] = {.lex_state = 83}, [566] = {.lex_state = 83}, - [567] = {.lex_state = 33}, + [567] = {.lex_state = 83}, [568] = {.lex_state = 83}, [569] = {.lex_state = 83}, [570] = {.lex_state = 83}, @@ -12211,300 +12222,300 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [579] = {.lex_state = 83}, [580] = {.lex_state = 83}, [581] = {.lex_state = 83}, - [582] = {.lex_state = 31}, - [583] = {.lex_state = 31}, - [584] = {.lex_state = 34}, - [585] = {.lex_state = 34}, - [586] = {.lex_state = 83}, - [587] = {.lex_state = 83}, - [588] = {.lex_state = 83}, - [589] = {.lex_state = 34}, - [590] = {.lex_state = 34}, - [591] = {.lex_state = 34}, - [592] = {.lex_state = 34}, - [593] = {.lex_state = 34}, - [594] = {.lex_state = 34}, + [582] = {.lex_state = 83}, + [583] = {.lex_state = 83}, + [584] = {.lex_state = 83}, + [585] = {.lex_state = 83}, + [586] = {.lex_state = 31}, + [587] = {.lex_state = 31}, + [588] = {.lex_state = 32}, + [589] = {.lex_state = 83}, + [590] = {.lex_state = 83}, + [591] = {.lex_state = 83}, + [592] = {.lex_state = 32}, + [593] = {.lex_state = 32}, + [594] = {.lex_state = 32}, [595] = {.lex_state = 34}, - [596] = {.lex_state = 34}, - [597] = {.lex_state = 34}, - [598] = {.lex_state = 34}, - [599] = {.lex_state = 34}, - [600] = {.lex_state = 34}, - [601] = {.lex_state = 34}, - [602] = {.lex_state = 34}, - [603] = {.lex_state = 34}, - [604] = {.lex_state = 34}, - [605] = {.lex_state = 34}, - [606] = {.lex_state = 34}, - [607] = {.lex_state = 34}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, - [610] = {.lex_state = 34}, - [611] = {.lex_state = 34}, - [612] = {.lex_state = 34}, - [613] = {.lex_state = 34}, + [596] = {.lex_state = 32}, + [597] = {.lex_state = 32}, + [598] = {.lex_state = 32}, + [599] = {.lex_state = 32}, + [600] = {.lex_state = 32}, + [601] = {.lex_state = 32}, + [602] = {.lex_state = 32}, + [603] = {.lex_state = 32}, + [604] = {.lex_state = 32}, + [605] = {.lex_state = 32}, + [606] = {.lex_state = 32}, + [607] = {.lex_state = 32}, + [608] = {.lex_state = 32}, + [609] = {.lex_state = 32}, + [610] = {.lex_state = 32}, + [611] = {.lex_state = 32}, + [612] = {.lex_state = 32}, + [613] = {.lex_state = 32}, [614] = {.lex_state = 32}, - [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, - [617] = {.lex_state = 34}, + [615] = {.lex_state = 32}, + [616] = {.lex_state = 32}, + [617] = {.lex_state = 32}, [618] = {.lex_state = 32}, - [619] = {.lex_state = 34}, - [620] = {.lex_state = 34}, - [621] = {.lex_state = 34}, + [619] = {.lex_state = 32}, + [620] = {.lex_state = 32}, + [621] = {.lex_state = 32}, [622] = {.lex_state = 32}, [623] = {.lex_state = 34}, - [624] = {.lex_state = 34}, - [625] = {.lex_state = 34}, - [626] = {.lex_state = 34}, - [627] = {.lex_state = 34}, - [628] = {.lex_state = 34}, - [629] = {.lex_state = 34}, - [630] = {.lex_state = 34}, - [631] = {.lex_state = 34}, + [624] = {.lex_state = 32}, + [625] = {.lex_state = 32}, + [626] = {.lex_state = 32}, + [627] = {.lex_state = 32}, + [628] = {.lex_state = 32}, + [629] = {.lex_state = 32}, + [630] = {.lex_state = 32}, + [631] = {.lex_state = 33}, [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, - [634] = {.lex_state = 33}, - [635] = {.lex_state = 34}, - [636] = {.lex_state = 34}, - [637] = {.lex_state = 33}, - [638] = {.lex_state = 34}, - [639] = {.lex_state = 34}, - [640] = {.lex_state = 34}, - [641] = {.lex_state = 34}, - [642] = {.lex_state = 34}, - [643] = {.lex_state = 34}, - [644] = {.lex_state = 33}, - [645] = {.lex_state = 34}, - [646] = {.lex_state = 34}, - [647] = {.lex_state = 83}, - [648] = {.lex_state = 33}, + [633] = {.lex_state = 32}, + [634] = {.lex_state = 32}, + [635] = {.lex_state = 32}, + [636] = {.lex_state = 32}, + [637] = {.lex_state = 32}, + [638] = {.lex_state = 32}, + [639] = {.lex_state = 32}, + [640] = {.lex_state = 32}, + [641] = {.lex_state = 33}, + [642] = {.lex_state = 32}, + [643] = {.lex_state = 32}, + [644] = {.lex_state = 32}, + [645] = {.lex_state = 32}, + [646] = {.lex_state = 32}, + [647] = {.lex_state = 32}, + [648] = {.lex_state = 32}, [649] = {.lex_state = 33}, - [650] = {.lex_state = 34}, - [651] = {.lex_state = 34}, - [652] = {.lex_state = 34}, - [653] = {.lex_state = 34}, - [654] = {.lex_state = 34}, - [655] = {.lex_state = 34}, - [656] = {.lex_state = 34}, - [657] = {.lex_state = 34}, - [658] = {.lex_state = 34}, - [659] = {.lex_state = 33}, - [660] = {.lex_state = 34}, - [661] = {.lex_state = 34}, - [662] = {.lex_state = 34}, - [663] = {.lex_state = 34}, - [664] = {.lex_state = 34}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 34}, - [668] = {.lex_state = 33}, - [669] = {.lex_state = 33}, - [670] = {.lex_state = 34}, + [650] = {.lex_state = 83}, + [651] = {.lex_state = 32}, + [652] = {.lex_state = 32}, + [653] = {.lex_state = 32}, + [654] = {.lex_state = 32}, + [655] = {.lex_state = 33}, + [656] = {.lex_state = 32}, + [657] = {.lex_state = 32}, + [658] = {.lex_state = 33}, + [659] = {.lex_state = 32}, + [660] = {.lex_state = 32}, + [661] = {.lex_state = 32}, + [662] = {.lex_state = 32}, + [663] = {.lex_state = 32}, + [664] = {.lex_state = 32}, + [665] = {.lex_state = 32}, + [666] = {.lex_state = 32}, + [667] = {.lex_state = 33}, + [668] = {.lex_state = 32}, + [669] = {.lex_state = 32}, + [670] = {.lex_state = 32}, [671] = {.lex_state = 33}, - [672] = {.lex_state = 83}, - [673] = {.lex_state = 33}, - [674] = {.lex_state = 34}, + [672] = {.lex_state = 32}, + [673] = {.lex_state = 32}, + [674] = {.lex_state = 33}, [675] = {.lex_state = 33}, - [676] = {.lex_state = 33}, - [677] = {.lex_state = 34}, + [676] = {.lex_state = 83}, + [677] = {.lex_state = 33}, [678] = {.lex_state = 33}, [679] = {.lex_state = 33}, [680] = {.lex_state = 33}, [681] = {.lex_state = 33}, - [682] = {.lex_state = 34}, + [682] = {.lex_state = 32}, [683] = {.lex_state = 33}, - [684] = {.lex_state = 34}, + [684] = {.lex_state = 33}, [685] = {.lex_state = 33}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 34}, + [686] = {.lex_state = 33}, + [687] = {.lex_state = 33}, [688] = {.lex_state = 33}, [689] = {.lex_state = 33}, [690] = {.lex_state = 33}, [691] = {.lex_state = 33}, [692] = {.lex_state = 33}, - [693] = {.lex_state = 34}, - [694] = {.lex_state = 34}, + [693] = {.lex_state = 32}, + [694] = {.lex_state = 33}, [695] = {.lex_state = 33}, [696] = {.lex_state = 33}, - [697] = {.lex_state = 34}, - [698] = {.lex_state = 34}, - [699] = {.lex_state = 33}, - [700] = {.lex_state = 34}, - [701] = {.lex_state = 33}, - [702] = {.lex_state = 34}, - [703] = {.lex_state = 33}, - [704] = {.lex_state = 34}, - [705] = {.lex_state = 33}, - [706] = {.lex_state = 33}, - [707] = {.lex_state = 33}, - [708] = {.lex_state = 33}, + [697] = {.lex_state = 32}, + [698] = {.lex_state = 33}, + [699] = {.lex_state = 32}, + [700] = {.lex_state = 33}, + [701] = {.lex_state = 32}, + [702] = {.lex_state = 33}, + [703] = {.lex_state = 32}, + [704] = {.lex_state = 32}, + [705] = {.lex_state = 32}, + [706] = {.lex_state = 32}, + [707] = {.lex_state = 32}, + [708] = {.lex_state = 32}, [709] = {.lex_state = 33}, - [710] = {.lex_state = 33}, - [711] = {.lex_state = 33}, + [710] = {.lex_state = 32}, + [711] = {.lex_state = 32}, [712] = {.lex_state = 33}, - [713] = {.lex_state = 34}, - [714] = {.lex_state = 34}, - [715] = {.lex_state = 34}, - [716] = {.lex_state = 34}, - [717] = {.lex_state = 31}, - [718] = {.lex_state = 34}, - [719] = {.lex_state = 32}, + [713] = {.lex_state = 33}, + [714] = {.lex_state = 33}, + [715] = {.lex_state = 33}, + [716] = {.lex_state = 33}, + [717] = {.lex_state = 32}, + [718] = {.lex_state = 32}, + [719] = {.lex_state = 34}, [720] = {.lex_state = 34}, [721] = {.lex_state = 34}, [722] = {.lex_state = 34}, [723] = {.lex_state = 34}, - [724] = {.lex_state = 34}, + [724] = {.lex_state = 32}, [725] = {.lex_state = 34}, - [726] = {.lex_state = 32}, - [727] = {.lex_state = 31}, + [726] = {.lex_state = 34}, + [727] = {.lex_state = 34}, [728] = {.lex_state = 34}, - [729] = {.lex_state = 34}, - [730] = {.lex_state = 32}, + [729] = {.lex_state = 33}, + [730] = {.lex_state = 34}, [731] = {.lex_state = 32}, - [732] = {.lex_state = 33}, + [732] = {.lex_state = 32}, [733] = {.lex_state = 33}, - [734] = {.lex_state = 33}, + [734] = {.lex_state = 32}, [735] = {.lex_state = 32}, - [736] = {.lex_state = 32}, - [737] = {.lex_state = 32}, + [736] = {.lex_state = 33}, + [737] = {.lex_state = 33}, [738] = {.lex_state = 32}, [739] = {.lex_state = 32}, [740] = {.lex_state = 32}, [741] = {.lex_state = 32}, [742] = {.lex_state = 34}, - [743] = {.lex_state = 34}, + [743] = {.lex_state = 33}, [744] = {.lex_state = 34}, - [745] = {.lex_state = 32}, + [745] = {.lex_state = 31}, [746] = {.lex_state = 32}, [747] = {.lex_state = 32}, [748] = {.lex_state = 34}, - [749] = {.lex_state = 33}, + [749] = {.lex_state = 32}, [750] = {.lex_state = 32}, - [751] = {.lex_state = 34}, + [751] = {.lex_state = 32}, [752] = {.lex_state = 31}, [753] = {.lex_state = 32}, [754] = {.lex_state = 32}, - [755] = {.lex_state = 34}, - [756] = {.lex_state = 34}, - [757] = {.lex_state = 33}, - [758] = {.lex_state = 34}, - [759] = {.lex_state = 34}, + [755] = {.lex_state = 32}, + [756] = {.lex_state = 31}, + [757] = {.lex_state = 31}, + [758] = {.lex_state = 32}, + [759] = {.lex_state = 32}, [760] = {.lex_state = 32}, - [761] = {.lex_state = 34}, + [761] = {.lex_state = 32}, [762] = {.lex_state = 34}, - [763] = {.lex_state = 31}, - [764] = {.lex_state = 32}, + [763] = {.lex_state = 34}, + [764] = {.lex_state = 34}, [765] = {.lex_state = 34}, [766] = {.lex_state = 34}, [767] = {.lex_state = 34}, - [768] = {.lex_state = 34}, - [769] = {.lex_state = 34}, - [770] = {.lex_state = 34}, - [771] = {.lex_state = 34}, - [772] = {.lex_state = 34}, - [773] = {.lex_state = 34}, - [774] = {.lex_state = 34}, - [775] = {.lex_state = 34}, - [776] = {.lex_state = 34}, - [777] = {.lex_state = 34}, - [778] = {.lex_state = 33}, - [779] = {.lex_state = 34}, - [780] = {.lex_state = 34}, - [781] = {.lex_state = 34}, - [782] = {.lex_state = 34}, - [783] = {.lex_state = 34}, - [784] = {.lex_state = 34}, - [785] = {.lex_state = 34}, - [786] = {.lex_state = 33}, - [787] = {.lex_state = 34}, - [788] = {.lex_state = 34}, - [789] = {.lex_state = 34}, - [790] = {.lex_state = 34}, - [791] = {.lex_state = 34}, - [792] = {.lex_state = 34}, - [793] = {.lex_state = 34}, - [794] = {.lex_state = 34}, - [795] = {.lex_state = 34}, - [796] = {.lex_state = 34}, - [797] = {.lex_state = 34}, - [798] = {.lex_state = 34}, - [799] = {.lex_state = 34}, - [800] = {.lex_state = 34}, - [801] = {.lex_state = 34}, - [802] = {.lex_state = 34}, - [803] = {.lex_state = 34}, - [804] = {.lex_state = 34}, - [805] = {.lex_state = 34}, - [806] = {.lex_state = 34}, - [807] = {.lex_state = 34}, - [808] = {.lex_state = 34}, - [809] = {.lex_state = 34}, - [810] = {.lex_state = 34}, - [811] = {.lex_state = 34}, - [812] = {.lex_state = 34}, - [813] = {.lex_state = 34}, - [814] = {.lex_state = 34}, - [815] = {.lex_state = 34}, - [816] = {.lex_state = 34}, - [817] = {.lex_state = 34}, - [818] = {.lex_state = 34}, - [819] = {.lex_state = 34}, - [820] = {.lex_state = 34}, - [821] = {.lex_state = 34}, - [822] = {.lex_state = 34}, - [823] = {.lex_state = 34}, - [824] = {.lex_state = 34}, - [825] = {.lex_state = 33}, - [826] = {.lex_state = 34}, - [827] = {.lex_state = 34}, - [828] = {.lex_state = 34}, - [829] = {.lex_state = 33}, - [830] = {.lex_state = 34}, - [831] = {.lex_state = 34}, - [832] = {.lex_state = 33}, - [833] = {.lex_state = 34}, + [768] = {.lex_state = 32}, + [769] = {.lex_state = 32}, + [770] = {.lex_state = 32}, + [771] = {.lex_state = 32}, + [772] = {.lex_state = 32}, + [773] = {.lex_state = 32}, + [774] = {.lex_state = 32}, + [775] = {.lex_state = 32}, + [776] = {.lex_state = 32}, + [777] = {.lex_state = 32}, + [778] = {.lex_state = 32}, + [779] = {.lex_state = 32}, + [780] = {.lex_state = 32}, + [781] = {.lex_state = 32}, + [782] = {.lex_state = 33}, + [783] = {.lex_state = 32}, + [784] = {.lex_state = 32}, + [785] = {.lex_state = 32}, + [786] = {.lex_state = 32}, + [787] = {.lex_state = 32}, + [788] = {.lex_state = 32}, + [789] = {.lex_state = 33}, + [790] = {.lex_state = 32}, + [791] = {.lex_state = 32}, + [792] = {.lex_state = 32}, + [793] = {.lex_state = 32}, + [794] = {.lex_state = 32}, + [795] = {.lex_state = 32}, + [796] = {.lex_state = 32}, + [797] = {.lex_state = 32}, + [798] = {.lex_state = 32}, + [799] = {.lex_state = 32}, + [800] = {.lex_state = 32}, + [801] = {.lex_state = 32}, + [802] = {.lex_state = 32}, + [803] = {.lex_state = 32}, + [804] = {.lex_state = 32}, + [805] = {.lex_state = 32}, + [806] = {.lex_state = 32}, + [807] = {.lex_state = 32}, + [808] = {.lex_state = 32}, + [809] = {.lex_state = 32}, + [810] = {.lex_state = 32}, + [811] = {.lex_state = 32}, + [812] = {.lex_state = 32}, + [813] = {.lex_state = 32}, + [814] = {.lex_state = 32}, + [815] = {.lex_state = 32}, + [816] = {.lex_state = 32}, + [817] = {.lex_state = 32}, + [818] = {.lex_state = 32}, + [819] = {.lex_state = 32}, + [820] = {.lex_state = 32}, + [821] = {.lex_state = 32}, + [822] = {.lex_state = 32}, + [823] = {.lex_state = 32}, + [824] = {.lex_state = 32}, + [825] = {.lex_state = 32}, + [826] = {.lex_state = 32}, + [827] = {.lex_state = 32}, + [828] = {.lex_state = 32}, + [829] = {.lex_state = 32}, + [830] = {.lex_state = 32}, + [831] = {.lex_state = 32}, + [832] = {.lex_state = 32}, + [833] = {.lex_state = 32}, [834] = {.lex_state = 33}, - [835] = {.lex_state = 34}, - [836] = {.lex_state = 33}, - [837] = {.lex_state = 34}, - [838] = {.lex_state = 34}, - [839] = {.lex_state = 34}, - [840] = {.lex_state = 34}, - [841] = {.lex_state = 34}, - [842] = {.lex_state = 34}, - [843] = {.lex_state = 34}, - [844] = {.lex_state = 34}, - [845] = {.lex_state = 34}, - [846] = {.lex_state = 34}, - [847] = {.lex_state = 34}, - [848] = {.lex_state = 34}, - [849] = {.lex_state = 34}, - [850] = {.lex_state = 34}, - [851] = {.lex_state = 33}, - [852] = {.lex_state = 33}, - [853] = {.lex_state = 33}, - [854] = {.lex_state = 34}, - [855] = {.lex_state = 34}, - [856] = {.lex_state = 34}, - [857] = {.lex_state = 34}, - [858] = {.lex_state = 33}, - [859] = {.lex_state = 34}, - [860] = {.lex_state = 33}, - [861] = {.lex_state = 34}, - [862] = {.lex_state = 34}, - [863] = {.lex_state = 34}, - [864] = {.lex_state = 33}, - [865] = {.lex_state = 34}, - [866] = {.lex_state = 34}, + [835] = {.lex_state = 32}, + [836] = {.lex_state = 32}, + [837] = {.lex_state = 33}, + [838] = {.lex_state = 33}, + [839] = {.lex_state = 33}, + [840] = {.lex_state = 32}, + [841] = {.lex_state = 32}, + [842] = {.lex_state = 32}, + [843] = {.lex_state = 32}, + [844] = {.lex_state = 33}, + [845] = {.lex_state = 32}, + [846] = {.lex_state = 32}, + [847] = {.lex_state = 32}, + [848] = {.lex_state = 32}, + [849] = {.lex_state = 32}, + [850] = {.lex_state = 33}, + [851] = {.lex_state = 32}, + [852] = {.lex_state = 32}, + [853] = {.lex_state = 32}, + [854] = {.lex_state = 32}, + [855] = {.lex_state = 33}, + [856] = {.lex_state = 33}, + [857] = {.lex_state = 32}, + [858] = {.lex_state = 32}, + [859] = {.lex_state = 32}, + [860] = {.lex_state = 32}, + [861] = {.lex_state = 32}, + [862] = {.lex_state = 32}, + [863] = {.lex_state = 32}, + [864] = {.lex_state = 32}, + [865] = {.lex_state = 33}, + [866] = {.lex_state = 32}, [867] = {.lex_state = 33}, - [868] = {.lex_state = 34}, - [869] = {.lex_state = 34}, - [870] = {.lex_state = 34}, - [871] = {.lex_state = 34}, - [872] = {.lex_state = 33}, - [873] = {.lex_state = 33}, - [874] = {.lex_state = 33}, - [875] = {.lex_state = 33}, + [868] = {.lex_state = 33}, + [869] = {.lex_state = 32}, + [870] = {.lex_state = 32}, + [871] = {.lex_state = 33}, + [872] = {.lex_state = 32}, + [873] = {.lex_state = 32}, + [874] = {.lex_state = 32}, + [875] = {.lex_state = 32}, [876] = {.lex_state = 33}, [877] = {.lex_state = 33}, [878] = {.lex_state = 33}, @@ -12550,114 +12561,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [918] = {.lex_state = 33}, [919] = {.lex_state = 33}, [920] = {.lex_state = 33}, - [921] = {.lex_state = 30}, + [921] = {.lex_state = 33}, [922] = {.lex_state = 33}, [923] = {.lex_state = 33}, - [924] = {.lex_state = 19}, + [924] = {.lex_state = 33}, [925] = {.lex_state = 33}, [926] = {.lex_state = 30}, - [927] = {.lex_state = 30}, + [927] = {.lex_state = 33}, [928] = {.lex_state = 30}, [929] = {.lex_state = 33}, - [930] = {.lex_state = 30}, - [931] = {.lex_state = 33}, - [932] = {.lex_state = 33}, - [933] = {.lex_state = 30}, + [930] = {.lex_state = 19}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 30}, + [933] = {.lex_state = 33}, [934] = {.lex_state = 33}, - [935] = {.lex_state = 33}, - [936] = {.lex_state = 33}, - [937] = {.lex_state = 33}, - [938] = {.lex_state = 33}, - [939] = {.lex_state = 33}, - [940] = {.lex_state = 33}, + [935] = {.lex_state = 30}, + [936] = {.lex_state = 30}, + [937] = {.lex_state = 30}, + [938] = {.lex_state = 30}, + [939] = {.lex_state = 30}, + [940] = {.lex_state = 30}, [941] = {.lex_state = 30}, - [942] = {.lex_state = 30}, - [943] = {.lex_state = 33}, + [942] = {.lex_state = 33}, + [943] = {.lex_state = 30}, [944] = {.lex_state = 33}, [945] = {.lex_state = 33}, [946] = {.lex_state = 30}, - [947] = {.lex_state = 33}, - [948] = {.lex_state = 30}, + [947] = {.lex_state = 30}, + [948] = {.lex_state = 33}, [949] = {.lex_state = 33}, [950] = {.lex_state = 30}, [951] = {.lex_state = 30}, [952] = {.lex_state = 30}, [953] = {.lex_state = 30}, - [954] = {.lex_state = 33}, + [954] = {.lex_state = 30}, [955] = {.lex_state = 33}, - [956] = {.lex_state = 33}, + [956] = {.lex_state = 30}, [957] = {.lex_state = 30}, [958] = {.lex_state = 30}, - [959] = {.lex_state = 30}, + [959] = {.lex_state = 33}, [960] = {.lex_state = 30}, [961] = {.lex_state = 33}, [962] = {.lex_state = 30}, - [963] = {.lex_state = 30}, - [964] = {.lex_state = 30}, + [963] = {.lex_state = 33}, + [964] = {.lex_state = 33}, [965] = {.lex_state = 30}, - [966] = {.lex_state = 30}, + [966] = {.lex_state = 33}, [967] = {.lex_state = 33}, - [968] = {.lex_state = 30}, - [969] = {.lex_state = 30}, + [968] = {.lex_state = 33}, + [969] = {.lex_state = 33}, [970] = {.lex_state = 30}, [971] = {.lex_state = 33}, - [972] = {.lex_state = 30}, - [973] = {.lex_state = 30}, + [972] = {.lex_state = 33}, + [973] = {.lex_state = 33}, [974] = {.lex_state = 30}, - [975] = {.lex_state = 30}, + [975] = {.lex_state = 33}, [976] = {.lex_state = 33}, - [977] = {.lex_state = 33}, - [978] = {.lex_state = 30}, + [977] = {.lex_state = 30}, + [978] = {.lex_state = 33}, [979] = {.lex_state = 33}, - [980] = {.lex_state = 33}, - [981] = {.lex_state = 30}, - [982] = {.lex_state = 33}, + [980] = {.lex_state = 30}, + [981] = {.lex_state = 33}, + [982] = {.lex_state = 30}, [983] = {.lex_state = 30}, [984] = {.lex_state = 33}, - [985] = {.lex_state = 30}, - [986] = {.lex_state = 30}, + [985] = {.lex_state = 33}, + [986] = {.lex_state = 33}, [987] = {.lex_state = 30}, - [988] = {.lex_state = 19}, - [989] = {.lex_state = 33}, - [990] = {.lex_state = 19}, - [991] = {.lex_state = 19}, - [992] = {.lex_state = 19}, - [993] = {.lex_state = 33}, + [988] = {.lex_state = 30}, + [989] = {.lex_state = 30}, + [990] = {.lex_state = 30}, + [991] = {.lex_state = 30}, + [992] = {.lex_state = 33}, + [993] = {.lex_state = 19}, [994] = {.lex_state = 19}, - [995] = {.lex_state = 19}, + [995] = {.lex_state = 33}, [996] = {.lex_state = 33}, [997] = {.lex_state = 19}, [998] = {.lex_state = 19}, [999] = {.lex_state = 19}, - [1000] = {.lex_state = 33}, + [1000] = {.lex_state = 19}, [1001] = {.lex_state = 19}, [1002] = {.lex_state = 33}, [1003] = {.lex_state = 19}, [1004] = {.lex_state = 19}, [1005] = {.lex_state = 19}, - [1006] = {.lex_state = 33}, - [1007] = {.lex_state = 19}, + [1006] = {.lex_state = 19}, + [1007] = {.lex_state = 33}, [1008] = {.lex_state = 19}, [1009] = {.lex_state = 19}, [1010] = {.lex_state = 19}, - [1011] = {.lex_state = 33}, + [1011] = {.lex_state = 19}, [1012] = {.lex_state = 19}, - [1013] = {.lex_state = 19}, + [1013] = {.lex_state = 33}, [1014] = {.lex_state = 19}, [1015] = {.lex_state = 33}, [1016] = {.lex_state = 19}, [1017] = {.lex_state = 33}, [1018] = {.lex_state = 19}, - [1019] = {.lex_state = 33}, + [1019] = {.lex_state = 19}, [1020] = {.lex_state = 19}, [1021] = {.lex_state = 19}, [1022] = {.lex_state = 19}, - [1023] = {.lex_state = 19}, + [1023] = {.lex_state = 33}, [1024] = {.lex_state = 19}, - [1025] = {.lex_state = 33}, + [1025] = {.lex_state = 19}, [1026] = {.lex_state = 19}, - [1027] = {.lex_state = 33}, - [1028] = {.lex_state = 33}, + [1027] = {.lex_state = 19}, + [1028] = {.lex_state = 19}, [1029] = {.lex_state = 33}, [1030] = {.lex_state = 33}, [1031] = {.lex_state = 33}, @@ -12669,73 +12680,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1037] = {.lex_state = 33}, [1038] = {.lex_state = 83}, [1039] = {.lex_state = 33}, - [1040] = {.lex_state = 83}, + [1040] = {.lex_state = 33}, [1041] = {.lex_state = 33}, [1042] = {.lex_state = 33}, [1043] = {.lex_state = 33}, - [1044] = {.lex_state = 33}, + [1044] = {.lex_state = 83}, [1045] = {.lex_state = 33}, - [1046] = {.lex_state = 83}, + [1046] = {.lex_state = 33}, [1047] = {.lex_state = 83}, [1048] = {.lex_state = 33}, - [1049] = {.lex_state = 83}, + [1049] = {.lex_state = 33}, [1050] = {.lex_state = 33}, - [1051] = {.lex_state = 31}, + [1051] = {.lex_state = 83}, [1052] = {.lex_state = 33}, - [1053] = {.lex_state = 33}, - [1054] = {.lex_state = 33}, + [1053] = {.lex_state = 83}, + [1054] = {.lex_state = 83}, [1055] = {.lex_state = 33}, - [1056] = {.lex_state = 33}, - [1057] = {.lex_state = 83}, + [1056] = {.lex_state = 83}, + [1057] = {.lex_state = 33}, [1058] = {.lex_state = 83}, [1059] = {.lex_state = 33}, [1060] = {.lex_state = 83}, - [1061] = {.lex_state = 83}, + [1061] = {.lex_state = 33}, [1062] = {.lex_state = 33}, [1063] = {.lex_state = 33}, - [1064] = {.lex_state = 31}, + [1064] = {.lex_state = 33}, [1065] = {.lex_state = 33}, [1066] = {.lex_state = 33}, - [1067] = {.lex_state = 33}, - [1068] = {.lex_state = 33}, + [1067] = {.lex_state = 83}, + [1068] = {.lex_state = 83}, [1069] = {.lex_state = 33}, - [1070] = {.lex_state = 83}, + [1070] = {.lex_state = 33}, [1071] = {.lex_state = 33}, - [1072] = {.lex_state = 83}, + [1072] = {.lex_state = 31}, [1073] = {.lex_state = 33}, [1074] = {.lex_state = 33}, - [1075] = {.lex_state = 83}, + [1075] = {.lex_state = 33}, [1076] = {.lex_state = 33}, [1077] = {.lex_state = 33}, - [1078] = {.lex_state = 83}, - [1079] = {.lex_state = 0}, + [1078] = {.lex_state = 31}, + [1079] = {.lex_state = 33}, [1080] = {.lex_state = 83}, - [1081] = {.lex_state = 83}, + [1081] = {.lex_state = 33}, [1082] = {.lex_state = 83}, - [1083] = {.lex_state = 83}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 83}, [1085] = {.lex_state = 83}, - [1086] = {.lex_state = 83}, - [1087] = {.lex_state = 33}, - [1088] = {.lex_state = 33}, + [1086] = {.lex_state = 33}, + [1087] = {.lex_state = 83}, + [1088] = {.lex_state = 83}, [1089] = {.lex_state = 83}, - [1090] = {.lex_state = 33}, - [1091] = {.lex_state = 83}, + [1090] = {.lex_state = 83}, + [1091] = {.lex_state = 33}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 35}, - [1094] = {.lex_state = 83}, - [1095] = {.lex_state = 35}, + [1093] = {.lex_state = 83}, + [1094] = {.lex_state = 33}, + [1095] = {.lex_state = 83}, [1096] = {.lex_state = 83}, - [1097] = {.lex_state = 83}, + [1097] = {.lex_state = 35}, [1098] = {.lex_state = 83}, - [1099] = {.lex_state = 83}, - [1100] = {.lex_state = 35}, - [1101] = {.lex_state = 35}, + [1099] = {.lex_state = 35}, + [1100] = {.lex_state = 83}, + [1101] = {.lex_state = 83}, [1102] = {.lex_state = 83}, [1103] = {.lex_state = 83}, - [1104] = {.lex_state = 83}, + [1104] = {.lex_state = 35}, [1105] = {.lex_state = 83}, - [1106] = {.lex_state = 83}, + [1106] = {.lex_state = 35}, [1107] = {.lex_state = 83}, [1108] = {.lex_state = 83}, [1109] = {.lex_state = 83}, @@ -12743,13 +12754,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 83}, [1112] = {.lex_state = 83}, [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, + [1114] = {.lex_state = 83}, + [1115] = {.lex_state = 83}, + [1116] = {.lex_state = 83}, [1117] = {.lex_state = 83}, - [1118] = {.lex_state = 83}, - [1119] = {.lex_state = 83}, - [1120] = {.lex_state = 83}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 83}, [1122] = {.lex_state = 83}, [1123] = {.lex_state = 83}, @@ -12758,104 +12769,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1126] = {.lex_state = 83}, [1127] = {.lex_state = 83}, [1128] = {.lex_state = 83}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 83}, [1130] = {.lex_state = 83}, [1131] = {.lex_state = 83}, [1132] = {.lex_state = 83}, - [1133] = {.lex_state = 83}, + [1133] = {.lex_state = 0}, [1134] = {.lex_state = 83}, - [1135] = {.lex_state = 0}, + [1135] = {.lex_state = 83}, [1136] = {.lex_state = 83}, [1137] = {.lex_state = 83}, [1138] = {.lex_state = 83}, - [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 33}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 83}, [1141] = {.lex_state = 83}, [1142] = {.lex_state = 83}, [1143] = {.lex_state = 83}, - [1144] = {.lex_state = 83}, + [1144] = {.lex_state = 33}, [1145] = {.lex_state = 83}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 83}, + [1146] = {.lex_state = 33}, + [1147] = {.lex_state = 33}, [1148] = {.lex_state = 83}, [1149] = {.lex_state = 83}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1150] = {.lex_state = 83}, + [1151] = {.lex_state = 83}, [1152] = {.lex_state = 83}, [1153] = {.lex_state = 83}, [1154] = {.lex_state = 83}, - [1155] = {.lex_state = 83}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 83}, - [1157] = {.lex_state = 33}, - [1158] = {.lex_state = 33}, + [1157] = {.lex_state = 83}, + [1158] = {.lex_state = 0}, [1159] = {.lex_state = 83}, [1160] = {.lex_state = 83}, [1161] = {.lex_state = 83}, [1162] = {.lex_state = 83}, [1163] = {.lex_state = 83}, - [1164] = {.lex_state = 33}, - [1165] = {.lex_state = 83}, + [1164] = {.lex_state = 83}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 83}, [1167] = {.lex_state = 83}, - [1168] = {.lex_state = 33}, + [1168] = {.lex_state = 83}, [1169] = {.lex_state = 83}, [1170] = {.lex_state = 83}, [1171] = {.lex_state = 83}, [1172] = {.lex_state = 83}, [1173] = {.lex_state = 83}, - [1174] = {.lex_state = 28}, + [1174] = {.lex_state = 33}, [1175] = {.lex_state = 83}, - [1176] = {.lex_state = 83}, - [1177] = {.lex_state = 83}, - [1178] = {.lex_state = 22}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 24}, + [1176] = {.lex_state = 28}, + [1177] = {.lex_state = 33}, + [1178] = {.lex_state = 83}, + [1179] = {.lex_state = 83}, + [1180] = {.lex_state = 83}, + [1181] = {.lex_state = 83}, + [1182] = {.lex_state = 22}, [1183] = {.lex_state = 24}, - [1184] = {.lex_state = 28}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 22}, + [1184] = {.lex_state = 22}, + [1185] = {.lex_state = 24}, + [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 33}, + [1188] = {.lex_state = 28}, [1189] = {.lex_state = 24}, [1190] = {.lex_state = 22}, - [1191] = {.lex_state = 24}, + [1191] = {.lex_state = 22}, [1192] = {.lex_state = 22}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 24}, - [1196] = {.lex_state = 22}, + [1193] = {.lex_state = 33}, + [1194] = {.lex_state = 22}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 24}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 83}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 33}, - [1201] = {.lex_state = 24}, - [1202] = {.lex_state = 22}, - [1203] = {.lex_state = 22}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 24}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 33}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 24}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1205] = {.lex_state = 22}, + [1206] = {.lex_state = 83}, + [1207] = {.lex_state = 24}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 28}, + [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, + [1218] = {.lex_state = 28}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 33}, + [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, + [1226] = {.lex_state = 33}, [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, @@ -12869,339 +12880,343 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 33}, + [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 28}, - [1243] = {.lex_state = 0}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 33}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, + [1245] = {.lex_state = 28}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 19}, - [1253] = {.lex_state = 28}, + [1251] = {.lex_state = 19}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 19}, - [1257] = {.lex_state = 83}, + [1256] = {.lex_state = 83}, + [1257] = {.lex_state = 28}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, + [1260] = {.lex_state = 19}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 28}, + [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 33}, + [1266] = {.lex_state = 28}, + [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 19}, - [1270] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 33}, [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 33}, - [1273] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 19}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 83}, + [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 33}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 28}, + [1277] = {.lex_state = 33}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 83}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 28}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 33}, + [1284] = {.lex_state = 28}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, + [1286] = {.lex_state = 28}, [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 33}, + [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 19}, + [1294] = {.lex_state = 33}, [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 28}, - [1297] = {.lex_state = 33}, - [1298] = {.lex_state = 33}, - [1299] = {.lex_state = 83}, - [1300] = {.lex_state = 83}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 19}, + [1299] = {.lex_state = 28}, + [1300] = {.lex_state = 33}, [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 23}, - [1304] = {.lex_state = 0}, + [1302] = {.lex_state = 33}, + [1303] = {.lex_state = 83}, + [1304] = {.lex_state = 83}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 83}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 23}, + [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 33}, - [1312] = {.lex_state = 28}, - [1313] = {.lex_state = 33}, - [1314] = {.lex_state = 33}, - [1315] = {.lex_state = 83}, - [1316] = {.lex_state = 26}, - [1317] = {.lex_state = 83}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 23}, - [1320] = {.lex_state = 33}, - [1321] = {.lex_state = 23}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 23}, + [1312] = {.lex_state = 83}, + [1313] = {.lex_state = 28}, + [1314] = {.lex_state = 23}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 33}, + [1317] = {.lex_state = 33}, + [1318] = {.lex_state = 33}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 83}, + [1321] = {.lex_state = 26}, [1322] = {.lex_state = 83}, [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 23}, - [1325] = {.lex_state = 26}, + [1324] = {.lex_state = 83}, + [1325] = {.lex_state = 33}, [1326] = {.lex_state = 23}, - [1327] = {.lex_state = 0}, + [1327] = {.lex_state = 26}, [1328] = {.lex_state = 23}, - [1329] = {.lex_state = 23}, + [1329] = {.lex_state = 83}, [1330] = {.lex_state = 23}, - [1331] = {.lex_state = 83}, + [1331] = {.lex_state = 0}, [1332] = {.lex_state = 23}, - [1333] = {.lex_state = 83}, - [1334] = {.lex_state = 83}, - [1335] = {.lex_state = 26}, + [1333] = {.lex_state = 23}, + [1334] = {.lex_state = 26}, + [1335] = {.lex_state = 83}, [1336] = {.lex_state = 23}, - [1337] = {.lex_state = 0}, + [1337] = {.lex_state = 83}, [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 83}, - [1340] = {.lex_state = 0}, + [1339] = {.lex_state = 23}, + [1340] = {.lex_state = 23}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 83}, [1343] = {.lex_state = 83}, - [1344] = {.lex_state = 23}, - [1345] = {.lex_state = 83}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, [1346] = {.lex_state = 83}, - [1347] = {.lex_state = 28}, + [1347] = {.lex_state = 83}, [1348] = {.lex_state = 23}, - [1349] = {.lex_state = 33}, + [1349] = {.lex_state = 23}, [1350] = {.lex_state = 83}, - [1351] = {.lex_state = 83}, - [1352] = {.lex_state = 83}, + [1351] = {.lex_state = 28}, + [1352] = {.lex_state = 0}, [1353] = {.lex_state = 83}, - [1354] = {.lex_state = 28}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 33}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1354] = {.lex_state = 33}, + [1355] = {.lex_state = 83}, + [1356] = {.lex_state = 83}, + [1357] = {.lex_state = 83}, + [1358] = {.lex_state = 28}, [1359] = {.lex_state = 33}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 23}, + [1361] = {.lex_state = 0}, [1362] = {.lex_state = 33}, - [1363] = {.lex_state = 23}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 19}, - [1368] = {.lex_state = 27}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 23}, + [1365] = {.lex_state = 33}, + [1366] = {.lex_state = 23}, + [1367] = {.lex_state = 23}, + [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 27}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 33}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 19}, + [1372] = {.lex_state = 27}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, + [1374] = {.lex_state = 27}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 27}, - [1378] = {.lex_state = 33}, - [1379] = {.lex_state = 33}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 19}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 27}, - [1385] = {.lex_state = 19}, - [1386] = {.lex_state = 27}, + [1381] = {.lex_state = 27}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 33}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 33}, + [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, + [1388] = {.lex_state = 19}, + [1389] = {.lex_state = 27}, [1390] = {.lex_state = 19}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 27}, + [1392] = {.lex_state = 27}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 19}, - [1398] = {.lex_state = 19}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 19}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 27}, - [1403] = {.lex_state = 19}, + [1396] = {.lex_state = 19}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 27}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 19}, + [1402] = {.lex_state = 19}, + [1403] = {.lex_state = 0}, [1404] = {.lex_state = 19}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 19}, - [1407] = {.lex_state = 27}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 19}, + [1406] = {.lex_state = 27}, + [1407] = {.lex_state = 19}, + [1408] = {.lex_state = 19}, + [1409] = {.lex_state = 0}, [1410] = {.lex_state = 19}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 19}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 33}, - [1416] = {.lex_state = 0}, + [1412] = {.lex_state = 27}, + [1413] = {.lex_state = 19}, + [1414] = {.lex_state = 19}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 19}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 33}, - [1421] = {.lex_state = 33}, - [1422] = {.lex_state = 27}, + [1418] = {.lex_state = 33}, + [1419] = {.lex_state = 33}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 27}, - [1425] = {.lex_state = 19}, - [1426] = {.lex_state = 33}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 27}, - [1431] = {.lex_state = 27}, - [1432] = {.lex_state = 33}, - [1433] = {.lex_state = 27}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, + [1424] = {.lex_state = 33}, + [1425] = {.lex_state = 33}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 27}, + [1428] = {.lex_state = 27}, + [1429] = {.lex_state = 19}, + [1430] = {.lex_state = 33}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 27}, + [1435] = {.lex_state = 33}, + [1436] = {.lex_state = 27}, + [1437] = {.lex_state = 27}, [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 33}, - [1442] = {.lex_state = 33}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 33}, - [1445] = {.lex_state = 83}, - [1446] = {.lex_state = 19}, - [1447] = {.lex_state = 33}, - [1448] = {.lex_state = 27}, - [1449] = {.lex_state = 27}, - [1450] = {.lex_state = 19}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 19}, - [1454] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 33}, + [1446] = {.lex_state = 33}, + [1447] = {.lex_state = 19}, + [1448] = {.lex_state = 33}, + [1449] = {.lex_state = 33}, + [1450] = {.lex_state = 83}, + [1451] = {.lex_state = 33}, + [1452] = {.lex_state = 27}, + [1453] = {.lex_state = 27}, + [1454] = {.lex_state = 19}, [1455] = {.lex_state = 0}, [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 27}, + [1457] = {.lex_state = 19}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 27}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 19}, - [1466] = {.lex_state = 19}, - [1467] = {.lex_state = 19}, - [1468] = {.lex_state = 27}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 27}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 27}, + [1468] = {.lex_state = 19}, [1469] = {.lex_state = 19}, - [1470] = {.lex_state = 27}, - [1471] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 19}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 19}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, + [1474] = {.lex_state = 27}, + [1475] = {.lex_state = 27}, [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, + [1477] = {.lex_state = 19}, [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 33}, - [1480] = {.lex_state = 33}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 33}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 33}, + [1484] = {.lex_state = 33}, [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 33}, + [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 33}, - [1489] = {.lex_state = 83}, - [1490] = {.lex_state = 19}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 27}, - [1493] = {.lex_state = 19}, - [1494] = {.lex_state = 33}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 33}, + [1491] = {.lex_state = 19}, + [1492] = {.lex_state = 33}, + [1493] = {.lex_state = 33}, + [1494] = {.lex_state = 83}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 19}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, + [1497] = {.lex_state = 27}, + [1498] = {.lex_state = 33}, [1499] = {.lex_state = 27}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 27}, + [1500] = {.lex_state = 19}, + [1501] = {.lex_state = 0}, [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 83}, + [1503] = {.lex_state = 27}, [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 33}, - [1508] = {.lex_state = 33}, - [1509] = {.lex_state = 83}, - [1510] = {.lex_state = 0}, + [1507] = {.lex_state = 83}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 27}, [1511] = {.lex_state = 33}, [1512] = {.lex_state = 33}, - [1513] = {.lex_state = 0}, + [1513] = {.lex_state = 83}, [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 19}, + [1515] = {.lex_state = 33}, + [1516] = {.lex_state = 33}, [1517] = {.lex_state = 0}, [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, + [1519] = {.lex_state = 19}, [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 27}, + [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 27}, + [1523] = {.lex_state = 0}, [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 83}, - [1526] = {.lex_state = 27}, + [1525] = {.lex_state = 27}, + [1526] = {.lex_state = 0}, [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 33}, - [1529] = {.lex_state = 33}, - [1530] = {.lex_state = 33}, - [1531] = {.lex_state = 83}, - [1532] = {.lex_state = 27}, - [1533] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 83}, + [1530] = {.lex_state = 27}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 33}, + [1533] = {.lex_state = 33}, [1534] = {.lex_state = 33}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 27}, + [1535] = {.lex_state = 27}, + [1536] = {.lex_state = 33}, [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 33}, - [1539] = {.lex_state = 0}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 27}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 33}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 27}, + [1541] = {.lex_state = 83}, + [1542] = {.lex_state = 33}, + [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 27}, - [1546] = {.lex_state = 33}, + [1545] = {.lex_state = 33}, + [1546] = {.lex_state = 27}, [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 19}, - [1549] = {.lex_state = 83}, + [1548] = {.lex_state = 27}, + [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 83}, - [1552] = {.lex_state = 27}, - [1553] = {.lex_state = 33}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 33}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 33}, + [1553] = {.lex_state = 83}, + [1554] = {.lex_state = 27}, + [1555] = {.lex_state = 83}, [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, + [1557] = {.lex_state = 33}, [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 83}, - [1561] = {.lex_state = 27}, - [1562] = {.lex_state = 33}, - [1563] = {.lex_state = 27}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 33}, - [1568] = {.lex_state = 83}, + [1559] = {.lex_state = 19}, + [1560] = {.lex_state = 33}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 83}, + [1565] = {.lex_state = 27}, + [1566] = {.lex_state = 33}, + [1567] = {.lex_state = 27}, + [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 83}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 33}, [1572] = {.lex_state = 83}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 83}, + [1575] = {.lex_state = 33}, + [1576] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13334,71 +13349,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1485), - [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(669), - [sym__declaration_specifiers] = STATE(1033), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(659), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(874), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_translation_unit] = STATE(1489), + [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(671), + [sym__declaration_specifiers] = STATE(1043), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(876), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -13480,72 +13495,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [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(1458), - [sym_preproc_elif] = STATE(1458), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1464), + [sym_preproc_elif] = STATE(1464), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -13629,226 +13644,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(1372), + [sym_preproc_elif] = STATE(1372), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(97), + [aux_sym_preproc_include_token1] = ACTIONS(99), + [aux_sym_preproc_def_token1] = ACTIONS(101), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(107), + [aux_sym_preproc_else_token1] = ACTIONS(109), + [aux_sym_preproc_elif_token1] = ACTIONS(111), + [sym_preproc_directive] = ACTIONS(113), + [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(115), + [anon_sym_typedef] = ACTIONS(117), + [anon_sym_extern] = ACTIONS(119), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = 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_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [4] = { + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), [sym_preproc_else] = STATE(1499), [sym_preproc_elif] = STATE(1499), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = 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_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [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(1368), - [sym_preproc_elif] = STATE(1368), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(147), + [aux_sym_preproc_if_token2] = ACTIONS(147), [aux_sym_preproc_ifdef_token1] = ACTIONS(107), [aux_sym_preproc_ifdef_token2] = ACTIONS(107), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -13933,26 +13948,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1377), - [sym_preproc_elif] = STATE(1377), + [sym_preproc_else] = STATE(1497), + [sym_preproc_elif] = STATE(1497), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13966,33 +13981,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14082,26 +14097,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1402), - [sym_preproc_elif] = STATE(1402), + [sym_preproc_else] = STATE(1381), + [sym_preproc_elif] = STATE(1381), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -14115,33 +14130,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14231,26 +14246,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1370), - [sym_preproc_elif] = STATE(1370), + [sym_preproc_else] = STATE(1374), + [sym_preproc_elif] = STATE(1374), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -14264,33 +14279,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14374,72 +14389,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [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(1386), - [sym_preproc_elif] = STATE(1386), - [sym_function_definition] = STATE(7), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1525), + [sym_preproc_elif] = STATE(1525), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14523,72 +14538,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [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(1532), - [sym_preproc_elif] = STATE(1532), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1530), + [sym_preproc_elif] = STATE(1530), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14672,72 +14687,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1384), - [sym_preproc_elif] = STATE(1384), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1389), + [sym_preproc_elif] = STATE(1389), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14821,72 +14836,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [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(1521), - [sym_preproc_elif] = STATE(1521), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1392), + [sym_preproc_elif] = STATE(1392), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -14976,26 +14991,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1433), - [sym_preproc_elif] = STATE(1433), + [sym_preproc_else] = STATE(1406), + [sym_preproc_elif] = STATE(1406), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15009,33 +15024,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15125,26 +15140,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1526), - [sym_preproc_elif] = STATE(1526), + [sym_preproc_else] = STATE(1399), + [sym_preproc_elif] = STATE(1399), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15158,33 +15173,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15268,72 +15283,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [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(1448), - [sym_preproc_elif] = STATE(1448), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1503), + [sym_preproc_elif] = STATE(1503), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15417,72 +15432,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [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(1449), - [sym_preproc_elif] = STATE(1449), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1467), + [sym_preproc_elif] = STATE(1467), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15572,26 +15587,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1552), - [sym_preproc_elif] = STATE(1552), + [sym_preproc_else] = STATE(1436), + [sym_preproc_elif] = STATE(1436), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15605,33 +15620,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15721,26 +15736,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1492), - [sym_preproc_elif] = STATE(1492), + [sym_preproc_else] = STATE(1554), + [sym_preproc_elif] = STATE(1554), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15754,33 +15769,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15870,26 +15885,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1393), - [sym_preproc_elif] = STATE(1393), + [sym_preproc_else] = STATE(1452), + [sym_preproc_elif] = STATE(1452), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15903,33 +15918,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16013,72 +16028,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1463), - [sym_preproc_elif] = STATE(1463), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(1453), + [sym_preproc_elif] = STATE(1453), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16171,21 +16186,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1034), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1039), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(655), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(875), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -16199,33 +16214,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(182), [aux_sym_preproc_def_token1] = ACTIONS(185), @@ -16309,70 +16324,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -16454,78 +16469,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [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(669), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(649), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(872), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(360), - [aux_sym_preproc_include_token1] = ACTIONS(362), - [aux_sym_preproc_def_token1] = ACTIONS(364), - [aux_sym_preproc_if_token1] = ACTIONS(366), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [sym_preproc_directive] = ACTIONS(372), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(316), + [aux_sym_preproc_include_token1] = ACTIONS(318), + [aux_sym_preproc_def_token1] = ACTIONS(320), + [aux_sym_preproc_if_token1] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(324), + [sym_preproc_directive] = ACTIONS(326), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16533,9 +16547,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(374), - [anon_sym_typedef] = ACTIONS(376), - [anon_sym_extern] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(332), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16545,7 +16559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(360), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16564,17 +16579,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -16599,215 +16614,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(404), - [aux_sym_preproc_include_token1] = ACTIONS(407), - [aux_sym_preproc_def_token1] = ACTIONS(410), - [aux_sym_preproc_if_token1] = ACTIONS(413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(416), - [sym_preproc_directive] = ACTIONS(419), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(425), - [anon_sym_extern] = ACTIONS(428), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(436), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_case] = ACTIONS(442), - [anon_sym_default] = ACTIONS(445), - [anon_sym_while] = ACTIONS(448), - [anon_sym_do] = ACTIONS(451), - [anon_sym_for] = ACTIONS(454), - [anon_sym_return] = ACTIONS(457), - [anon_sym_break] = ACTIONS(460), - [anon_sym_continue] = ACTIONS(463), - [anon_sym_goto] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - }, - [24] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -16835,7 +16705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(362), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16888,71 +16758,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [24] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -16980,7 +16850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(364), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17033,78 +16903,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(316), - [aux_sym_preproc_include_token1] = ACTIONS(318), - [aux_sym_preproc_def_token1] = ACTIONS(320), - [aux_sym_preproc_if_token1] = ACTIONS(322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(324), - [sym_preproc_directive] = ACTIONS(326), + [25] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1049), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(658), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(879), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(366), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(372), + [aux_sym_preproc_if_token2] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17112,9 +16983,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(328), - [anon_sym_typedef] = ACTIONS(330), - [anon_sym_extern] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), + [anon_sym_extern] = ACTIONS(384), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17124,8 +16995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17144,17 +17014,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -17178,71 +17048,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [27] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [26] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -17270,7 +17140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(410), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17323,71 +17193,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [27] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -17415,7 +17285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(412), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17468,78 +17338,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [28] = { + [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(671), + [sym__declaration_specifiers] = STATE(1043), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(876), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [aux_sym_preproc_include_token1] = ACTIONS(419), + [aux_sym_preproc_def_token1] = ACTIONS(422), + [aux_sym_preproc_if_token1] = ACTIONS(425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(428), + [sym_preproc_directive] = ACTIONS(431), + [anon_sym_LPAREN2] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_AMP] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(437), + [anon_sym_extern] = ACTIONS(440), + [anon_sym___attribute__] = ACTIONS(220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(223), + [anon_sym___declspec] = ACTIONS(226), + [anon_sym___cdecl] = ACTIONS(229), + [anon_sym___clrcall] = ACTIONS(229), + [anon_sym___stdcall] = ACTIONS(229), + [anon_sym___fastcall] = ACTIONS(229), + [anon_sym___thiscall] = ACTIONS(229), + [anon_sym___vectorcall] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_static] = ACTIONS(235), + [anon_sym_auto] = ACTIONS(235), + [anon_sym_register] = ACTIONS(235), + [anon_sym_inline] = ACTIONS(235), + [anon_sym_const] = ACTIONS(238), + [anon_sym_volatile] = ACTIONS(238), + [anon_sym_restrict] = ACTIONS(238), + [anon_sym___restrict__] = ACTIONS(238), + [anon_sym__Atomic] = ACTIONS(238), + [anon_sym__Noreturn] = ACTIONS(238), + [anon_sym_signed] = ACTIONS(241), + [anon_sym_unsigned] = ACTIONS(241), + [anon_sym_long] = ACTIONS(241), + [anon_sym_short] = ACTIONS(241), + [sym_primitive_type] = ACTIONS(244), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(250), + [anon_sym_union] = ACTIONS(253), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(449), + [anon_sym_case] = ACTIONS(452), + [anon_sym_default] = ACTIONS(455), + [anon_sym_while] = ACTIONS(458), + [anon_sym_do] = ACTIONS(461), + [anon_sym_for] = ACTIONS(464), + [anon_sym_return] = ACTIONS(467), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_goto] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_sizeof] = ACTIONS(292), + [anon_sym_offsetof] = ACTIONS(295), + [anon_sym__Generic] = ACTIONS(298), + [anon_sym_asm] = ACTIONS(301), + [anon_sym___asm__] = ACTIONS(301), + [sym_number_literal] = ACTIONS(304), + [anon_sym_L_SQUOTE] = ACTIONS(307), + [anon_sym_u_SQUOTE] = ACTIONS(307), + [anon_sym_U_SQUOTE] = ACTIONS(307), + [anon_sym_u8_SQUOTE] = ACTIONS(307), + [anon_sym_SQUOTE] = ACTIONS(307), + [anon_sym_L_DQUOTE] = ACTIONS(310), + [anon_sym_u_DQUOTE] = ACTIONS(310), + [anon_sym_U_DQUOTE] = ACTIONS(310), + [anon_sym_u8_DQUOTE] = ACTIONS(310), + [anon_sym_DQUOTE] = ACTIONS(310), + [sym_true] = ACTIONS(313), + [sym_false] = ACTIONS(313), + [sym_null] = ACTIONS(313), + [sym_comment] = ACTIONS(3), + }, [29] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(316), - [aux_sym_preproc_include_token1] = ACTIONS(318), - [aux_sym_preproc_def_token1] = ACTIONS(320), - [aux_sym_preproc_if_token1] = ACTIONS(322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(324), - [sym_preproc_directive] = ACTIONS(326), + [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(671), + [sym__declaration_specifiers] = STATE(1049), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(658), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(879), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(366), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(372), + [aux_sym_preproc_if_token2] = ACTIONS(479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17547,9 +17563,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(328), - [anon_sym_typedef] = ACTIONS(330), - [anon_sym_extern] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), + [anon_sym_extern] = ACTIONS(384), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17559,8 +17575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17579,17 +17594,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -17614,70 +17629,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -17759,70 +17774,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -17904,70 +17919,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -18049,70 +18064,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [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(671), + [sym__declaration_specifiers] = STATE(1049), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(658), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(879), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(487), + [aux_sym_preproc_include_token1] = ACTIONS(490), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [aux_sym_preproc_if_token1] = ACTIONS(496), + [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(499), + [sym_preproc_directive] = ACTIONS(502), + [anon_sym_LPAREN2] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_AMP] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(508), + [anon_sym_extern] = ACTIONS(511), + [anon_sym___attribute__] = ACTIONS(220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(223), + [anon_sym___declspec] = ACTIONS(226), + [anon_sym___cdecl] = ACTIONS(229), + [anon_sym___clrcall] = ACTIONS(229), + [anon_sym___stdcall] = ACTIONS(229), + [anon_sym___fastcall] = ACTIONS(229), + [anon_sym___thiscall] = ACTIONS(229), + [anon_sym___vectorcall] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_static] = ACTIONS(235), + [anon_sym_auto] = ACTIONS(235), + [anon_sym_register] = ACTIONS(235), + [anon_sym_inline] = ACTIONS(235), + [anon_sym_const] = ACTIONS(238), + [anon_sym_volatile] = ACTIONS(238), + [anon_sym_restrict] = ACTIONS(238), + [anon_sym___restrict__] = ACTIONS(238), + [anon_sym__Atomic] = ACTIONS(238), + [anon_sym__Noreturn] = ACTIONS(238), + [anon_sym_signed] = ACTIONS(241), + [anon_sym_unsigned] = ACTIONS(241), + [anon_sym_long] = ACTIONS(241), + [anon_sym_short] = ACTIONS(241), + [sym_primitive_type] = ACTIONS(244), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(250), + [anon_sym_union] = ACTIONS(253), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(520), + [anon_sym_case] = ACTIONS(523), + [anon_sym_default] = ACTIONS(526), + [anon_sym_while] = ACTIONS(529), + [anon_sym_do] = ACTIONS(532), + [anon_sym_for] = ACTIONS(535), + [anon_sym_return] = ACTIONS(538), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_goto] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_sizeof] = ACTIONS(292), + [anon_sym_offsetof] = ACTIONS(295), + [anon_sym__Generic] = ACTIONS(298), + [anon_sym_asm] = ACTIONS(301), + [anon_sym___asm__] = ACTIONS(301), + [sym_number_literal] = ACTIONS(304), + [anon_sym_L_SQUOTE] = ACTIONS(307), + [anon_sym_u_SQUOTE] = ACTIONS(307), + [anon_sym_U_SQUOTE] = ACTIONS(307), + [anon_sym_u8_SQUOTE] = ACTIONS(307), + [anon_sym_SQUOTE] = ACTIONS(307), + [anon_sym_L_DQUOTE] = ACTIONS(310), + [anon_sym_u_DQUOTE] = ACTIONS(310), + [anon_sym_U_DQUOTE] = ACTIONS(310), + [anon_sym_u8_DQUOTE] = ACTIONS(310), + [anon_sym_DQUOTE] = ACTIONS(310), + [sym_true] = ACTIONS(313), + [sym_false] = ACTIONS(313), + [sym_null] = ACTIONS(313), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(550), + [aux_sym_preproc_include_token1] = ACTIONS(553), + [aux_sym_preproc_def_token1] = ACTIONS(556), + [aux_sym_preproc_if_token1] = ACTIONS(559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(562), + [sym_preproc_directive] = ACTIONS(565), + [anon_sym_LPAREN2] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_AMP] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_typedef] = ACTIONS(571), + [anon_sym_extern] = ACTIONS(574), + [anon_sym___attribute__] = ACTIONS(220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(223), + [anon_sym___declspec] = ACTIONS(226), + [anon_sym___cdecl] = ACTIONS(229), + [anon_sym___clrcall] = ACTIONS(229), + [anon_sym___stdcall] = ACTIONS(229), + [anon_sym___fastcall] = ACTIONS(229), + [anon_sym___thiscall] = ACTIONS(229), + [anon_sym___vectorcall] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_static] = ACTIONS(235), + [anon_sym_auto] = ACTIONS(235), + [anon_sym_register] = ACTIONS(235), + [anon_sym_inline] = ACTIONS(235), + [anon_sym_const] = ACTIONS(238), + [anon_sym_volatile] = ACTIONS(238), + [anon_sym_restrict] = ACTIONS(238), + [anon_sym___restrict__] = ACTIONS(238), + [anon_sym__Atomic] = ACTIONS(238), + [anon_sym__Noreturn] = ACTIONS(238), + [anon_sym_signed] = ACTIONS(241), + [anon_sym_unsigned] = ACTIONS(241), + [anon_sym_long] = ACTIONS(241), + [anon_sym_short] = ACTIONS(241), + [sym_primitive_type] = ACTIONS(244), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(250), + [anon_sym_union] = ACTIONS(253), + [anon_sym_if] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(583), + [anon_sym_case] = ACTIONS(586), + [anon_sym_default] = ACTIONS(589), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(595), + [anon_sym_for] = ACTIONS(598), + [anon_sym_return] = ACTIONS(601), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_sizeof] = ACTIONS(292), + [anon_sym_offsetof] = ACTIONS(295), + [anon_sym__Generic] = ACTIONS(298), + [anon_sym_asm] = ACTIONS(301), + [anon_sym___asm__] = ACTIONS(301), + [sym_number_literal] = ACTIONS(304), + [anon_sym_L_SQUOTE] = ACTIONS(307), + [anon_sym_u_SQUOTE] = ACTIONS(307), + [anon_sym_U_SQUOTE] = ACTIONS(307), + [anon_sym_u8_SQUOTE] = ACTIONS(307), + [anon_sym_SQUOTE] = ACTIONS(307), + [anon_sym_L_DQUOTE] = ACTIONS(310), + [anon_sym_u_DQUOTE] = ACTIONS(310), + [anon_sym_U_DQUOTE] = ACTIONS(310), + [anon_sym_u8_DQUOTE] = ACTIONS(310), + [anon_sym_DQUOTE] = ACTIONS(310), + [sym_true] = ACTIONS(313), + [sym_false] = ACTIONS(313), + [sym_null] = ACTIONS(313), + [sym_comment] = ACTIONS(3), + }, + [35] = { + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -18140,7 +18445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18193,71 +18498,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [36] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -18285,7 +18590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18338,71 +18643,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [35] = { - [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(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [37] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -18430,7 +18735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18483,224 +18788,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1033), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(659), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(874), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(493), - [aux_sym_preproc_include_token1] = ACTIONS(496), - [aux_sym_preproc_def_token1] = ACTIONS(499), - [aux_sym_preproc_if_token1] = ACTIONS(502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(505), - [sym_preproc_directive] = ACTIONS(508), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_typedef] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(517), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_case] = ACTIONS(529), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(535), - [anon_sym_do] = ACTIONS(538), - [anon_sym_for] = ACTIONS(541), - [anon_sym_return] = ACTIONS(544), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_goto] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - }, - [37] = { - [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(669), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(649), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(872), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(360), - [aux_sym_preproc_include_token1] = ACTIONS(362), - [aux_sym_preproc_def_token1] = ACTIONS(364), - [aux_sym_preproc_if_token1] = ACTIONS(366), - [aux_sym_preproc_if_token2] = ACTIONS(556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [sym_preproc_directive] = ACTIONS(372), + [38] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(316), + [aux_sym_preproc_include_token1] = ACTIONS(318), + [aux_sym_preproc_def_token1] = ACTIONS(320), + [aux_sym_preproc_if_token1] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(324), + [sym_preproc_directive] = ACTIONS(326), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18708,9 +18867,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(374), - [anon_sym_typedef] = ACTIONS(376), - [anon_sym_extern] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(332), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18720,7 +18879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18739,17 +18899,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18773,71 +18933,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [39] = { + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -18865,7 +19025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18918,7 +19078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [39] = { + [40] = { [sym_preproc_include] = STATE(23), [sym_preproc_def] = STATE(23), [sym_preproc_function_def] = STATE(23), @@ -18928,21 +19088,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(23), [sym_declaration] = STATE(23), [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1037), [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(23), [sym_labeled_statement] = STATE(23), [sym_expression_statement] = STATE(23), @@ -18956,33 +19116,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(23), [sym_continue_statement] = STATE(23), [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(920), [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(316), [aux_sym_preproc_include_token1] = ACTIONS(318), [aux_sym_preproc_def_token1] = ACTIONS(320), @@ -19010,7 +19170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(623), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19063,78 +19223,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1036), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(873), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(316), - [aux_sym_preproc_include_token1] = ACTIONS(318), - [aux_sym_preproc_def_token1] = ACTIONS(320), - [aux_sym_preproc_if_token1] = ACTIONS(322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(324), - [sym_preproc_directive] = ACTIONS(326), + [41] = { + [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(671), + [sym__declaration_specifiers] = STATE(1043), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(876), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19142,9 +19303,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(328), - [anon_sym_typedef] = ACTIONS(330), - [anon_sym_extern] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19154,8 +19315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19174,17 +19334,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19208,224 +19368,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [41] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(649), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(872), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(564), - [aux_sym_preproc_include_token1] = ACTIONS(567), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [aux_sym_preproc_if_token1] = ACTIONS(573), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(576), - [sym_preproc_directive] = ACTIONS(579), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_typedef] = ACTIONS(585), - [anon_sym_extern] = ACTIONS(588), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_case] = ACTIONS(600), - [anon_sym_default] = ACTIONS(603), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(609), - [anon_sym_for] = ACTIONS(612), - [anon_sym_return] = ACTIONS(615), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(624), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - }, [42] = { - [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(669), - [sym__declaration_specifiers] = STATE(1033), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_ms_call_modifier] = STATE(659), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(874), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(627), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [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(671), + [sym__declaration_specifiers] = STATE(1037), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_ms_call_modifier] = STATE(667), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(316), + [aux_sym_preproc_include_token1] = ACTIONS(318), + [aux_sym_preproc_def_token1] = ACTIONS(320), + [aux_sym_preproc_if_token1] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(324), + [sym_preproc_directive] = ACTIONS(326), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19433,9 +19447,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(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(332), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19445,7 +19459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19464,17 +19479,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19499,59 +19514,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1044), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(44), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1045), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(46), [sym_identifier] = ACTIONS(629), [aux_sym_preproc_include_token1] = ACTIONS(631), [aux_sym_preproc_def_token1] = ACTIONS(631), @@ -19638,19 +19653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [44] = { [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1044), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1045), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym_expression_statement] = STATE(44), @@ -19663,31 +19678,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(633), [aux_sym_preproc_include_token1] = ACTIONS(636), @@ -19773,59 +19788,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1044), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(43), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1045), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(629), [aux_sym_preproc_include_token1] = ACTIONS(743), [aux_sym_preproc_def_token1] = ACTIONS(743), @@ -19910,59 +19925,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1044), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1045), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(629), [aux_sym_preproc_include_token1] = ACTIONS(745), [aux_sym_preproc_def_token1] = ACTIONS(745), @@ -20047,59 +20062,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1044), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(44), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1045), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(629), [aux_sym_preproc_include_token1] = ACTIONS(747), [aux_sym_preproc_def_token1] = ACTIONS(747), @@ -20184,67 +20199,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(749), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1041), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(749), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_if_token2] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20252,19 +20267,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20283,18 +20298,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(388), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20319,195 +20334,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1039), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(49), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(751), [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(636), - [aux_sym_preproc_if_token2] = ACTIONS(636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(636), - [sym_preproc_directive] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_typedef] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(656), - [anon_sym___attribute__] = ACTIONS(659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(662), - [anon_sym___declspec] = ACTIONS(665), - [anon_sym___cdecl] = ACTIONS(636), - [anon_sym___clrcall] = ACTIONS(636), - [anon_sym___stdcall] = ACTIONS(636), - [anon_sym___fastcall] = ACTIONS(636), - [anon_sym___thiscall] = ACTIONS(636), - [anon_sym___vectorcall] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_static] = ACTIONS(656), - [anon_sym_auto] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_const] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_restrict] = ACTIONS(671), - [anon_sym___restrict__] = ACTIONS(671), - [anon_sym__Atomic] = ACTIONS(671), - [anon_sym__Noreturn] = ACTIONS(671), - [anon_sym_signed] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(677), - [anon_sym_enum] = ACTIONS(680), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_union] = ACTIONS(686), - [anon_sym_if] = ACTIONS(765), - [anon_sym_else] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(768), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_while] = ACTIONS(771), - [anon_sym_do] = ACTIONS(774), - [anon_sym_for] = ACTIONS(777), - [anon_sym_return] = ACTIONS(780), - [anon_sym_break] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(786), - [anon_sym_goto] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_sizeof] = ACTIONS(719), - [anon_sym_offsetof] = ACTIONS(722), - [anon_sym__Generic] = ACTIONS(725), - [anon_sym_asm] = ACTIONS(728), - [anon_sym___asm__] = ACTIONS(728), - [sym_number_literal] = ACTIONS(731), - [anon_sym_L_SQUOTE] = ACTIONS(734), - [anon_sym_u_SQUOTE] = ACTIONS(734), - [anon_sym_U_SQUOTE] = ACTIONS(734), - [anon_sym_u8_SQUOTE] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym_L_DQUOTE] = ACTIONS(737), - [anon_sym_u_DQUOTE] = ACTIONS(737), - [anon_sym_U_DQUOTE] = ACTIONS(737), - [anon_sym_u8_DQUOTE] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [50] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1043), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(792), [aux_sym_preproc_include_token1] = ACTIONS(745), [aux_sym_preproc_def_token1] = ACTIONS(745), [aux_sym_preproc_if_token1] = ACTIONS(745), @@ -20521,8 +20402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_typedef] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -20533,8 +20414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(745), [anon_sym___thiscall] = ACTIONS(745), [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20553,18 +20433,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(745), [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20588,67 +20468,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1043), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), + [50] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1041), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(749), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_if_token2] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20656,20 +20537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_typedef] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym___cdecl] = ACTIONS(747), + [anon_sym___clrcall] = ACTIONS(747), + [anon_sym___stdcall] = ACTIONS(747), + [anon_sym___fastcall] = ACTIONS(747), + [anon_sym___thiscall] = ACTIONS(747), + [anon_sym___vectorcall] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20688,18 +20568,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_if] = ACTIONS(388), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20723,61 +20603,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1043), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(792), + [51] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(58), + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(753), [aux_sym_preproc_include_token1] = ACTIONS(747), [aux_sym_preproc_def_token1] = ACTIONS(747), [aux_sym_preproc_if_token1] = ACTIONS(747), @@ -20791,8 +20672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_typedef] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -20803,8 +20684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(747), [anon_sym___thiscall] = ACTIONS(747), [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20823,18 +20703,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(747), [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20858,203 +20738,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1043), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(798), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(636), - [sym_preproc_directive] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_typedef] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(656), - [anon_sym___attribute__] = ACTIONS(659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(662), - [anon_sym___declspec] = ACTIONS(665), - [anon_sym___cdecl] = ACTIONS(636), - [anon_sym___clrcall] = ACTIONS(636), - [anon_sym___stdcall] = ACTIONS(636), - [anon_sym___fastcall] = ACTIONS(636), - [anon_sym___thiscall] = ACTIONS(636), - [anon_sym___vectorcall] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_static] = ACTIONS(656), - [anon_sym_auto] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_const] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_restrict] = ACTIONS(671), - [anon_sym___restrict__] = ACTIONS(671), - [anon_sym__Atomic] = ACTIONS(671), - [anon_sym__Noreturn] = ACTIONS(671), - [anon_sym_signed] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(677), - [anon_sym_enum] = ACTIONS(680), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_union] = ACTIONS(686), - [anon_sym_if] = ACTIONS(812), - [anon_sym_else] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(815), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_while] = ACTIONS(818), - [anon_sym_do] = ACTIONS(821), - [anon_sym_for] = ACTIONS(824), - [anon_sym_return] = ACTIONS(827), - [anon_sym_break] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_goto] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_sizeof] = ACTIONS(719), - [anon_sym_offsetof] = ACTIONS(722), - [anon_sym__Generic] = ACTIONS(725), - [anon_sym_asm] = ACTIONS(728), - [anon_sym___asm__] = ACTIONS(728), - [sym_number_literal] = ACTIONS(731), - [anon_sym_L_SQUOTE] = ACTIONS(734), - [anon_sym_u_SQUOTE] = ACTIONS(734), - [anon_sym_U_SQUOTE] = ACTIONS(734), - [anon_sym_u8_SQUOTE] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym_L_DQUOTE] = ACTIONS(737), - [anon_sym_u_DQUOTE] = ACTIONS(737), - [anon_sym_U_DQUOTE] = ACTIONS(737), - [anon_sym_u8_DQUOTE] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [54] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(839), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(743), - [aux_sym_preproc_def_token1] = ACTIONS(743), - [aux_sym_preproc_if_token1] = ACTIONS(743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(743), - [sym_preproc_directive] = ACTIONS(743), + [52] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1041), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(749), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_if_token2] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21062,19 +20807,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(743), - [anon_sym___clrcall] = ACTIONS(743), - [anon_sym___stdcall] = ACTIONS(743), - [anon_sym___fastcall] = ACTIONS(743), - [anon_sym___thiscall] = ACTIONS(743), - [anon_sym___vectorcall] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(745), + [anon_sym___clrcall] = ACTIONS(745), + [anon_sym___stdcall] = ACTIONS(745), + [anon_sym___fastcall] = ACTIONS(745), + [anon_sym___thiscall] = ACTIONS(745), + [anon_sym___vectorcall] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21093,18 +20838,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(388), + [anon_sym_else] = ACTIONS(745), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21128,68 +20873,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1039), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(841), - [aux_sym_preproc_include_token1] = ACTIONS(743), - [aux_sym_preproc_def_token1] = ACTIONS(743), - [aux_sym_preproc_if_token1] = ACTIONS(743), - [aux_sym_preproc_if_token2] = ACTIONS(743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(743), - [sym_preproc_directive] = ACTIONS(743), + [53] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1035), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(757), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21197,19 +20941,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(374), - [anon_sym_typedef] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(743), - [anon_sym___clrcall] = ACTIONS(743), - [anon_sym___stdcall] = ACTIONS(743), - [anon_sym___fastcall] = ACTIONS(743), - [anon_sym___thiscall] = ACTIONS(743), - [anon_sym___vectorcall] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(759), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21228,18 +20973,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21263,67 +21008,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1043), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(743), - [aux_sym_preproc_def_token1] = ACTIONS(743), - [aux_sym_preproc_if_token1] = ACTIONS(743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(743), - [sym_preproc_directive] = ACTIONS(743), + [54] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(753), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21331,20 +21077,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_typedef] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(743), - [anon_sym___clrcall] = ACTIONS(743), - [anon_sym___stdcall] = ACTIONS(743), - [anon_sym___fastcall] = ACTIONS(743), - [anon_sym___thiscall] = ACTIONS(743), - [anon_sym___vectorcall] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21363,18 +21108,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(338), - [anon_sym_else] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21398,203 +21143,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(843), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(636), - [sym_preproc_directive] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_typedef] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(656), - [anon_sym___attribute__] = ACTIONS(659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(662), - [anon_sym___declspec] = ACTIONS(665), - [anon_sym___cdecl] = ACTIONS(636), - [anon_sym___clrcall] = ACTIONS(636), - [anon_sym___stdcall] = ACTIONS(636), - [anon_sym___fastcall] = ACTIONS(636), - [anon_sym___thiscall] = ACTIONS(636), - [anon_sym___vectorcall] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_static] = ACTIONS(656), - [anon_sym_auto] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_const] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_restrict] = ACTIONS(671), - [anon_sym___restrict__] = ACTIONS(671), - [anon_sym__Atomic] = ACTIONS(671), - [anon_sym__Noreturn] = ACTIONS(671), - [anon_sym_signed] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(677), - [anon_sym_enum] = ACTIONS(680), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_union] = ACTIONS(686), - [anon_sym_if] = ACTIONS(855), - [anon_sym_else] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(858), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(864), - [anon_sym_for] = ACTIONS(867), - [anon_sym_return] = ACTIONS(870), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_goto] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_sizeof] = ACTIONS(719), - [anon_sym_offsetof] = ACTIONS(722), - [anon_sym__Generic] = ACTIONS(725), - [anon_sym_asm] = ACTIONS(728), - [anon_sym___asm__] = ACTIONS(728), - [sym_number_literal] = ACTIONS(731), - [anon_sym_L_SQUOTE] = ACTIONS(734), - [anon_sym_u_SQUOTE] = ACTIONS(734), - [anon_sym_U_SQUOTE] = ACTIONS(734), - [anon_sym_u8_SQUOTE] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym_L_DQUOTE] = ACTIONS(737), - [anon_sym_u_DQUOTE] = ACTIONS(737), - [anon_sym_U_DQUOTE] = ACTIONS(737), - [anon_sym_u8_DQUOTE] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [58] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(796), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), + [55] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1041), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(749), + [aux_sym_preproc_include_token1] = ACTIONS(743), + [aux_sym_preproc_def_token1] = ACTIONS(743), + [aux_sym_preproc_if_token1] = ACTIONS(743), + [aux_sym_preproc_if_token2] = ACTIONS(743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(743), + [sym_preproc_directive] = ACTIONS(743), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21602,19 +21212,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_typedef] = ACTIONS(382), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(743), + [anon_sym___clrcall] = ACTIONS(743), + [anon_sym___stdcall] = ACTIONS(743), + [anon_sym___fastcall] = ACTIONS(743), + [anon_sym___thiscall] = ACTIONS(743), + [anon_sym___vectorcall] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(386), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21633,18 +21243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(388), + [anon_sym_else] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(743), + [anon_sym_default] = ACTIONS(743), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21668,68 +21278,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1039), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(841), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_if_token2] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), + [56] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1035), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(757), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21737,19 +21346,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(374), - [anon_sym_typedef] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym___cdecl] = ACTIONS(747), + [anon_sym___clrcall] = ACTIONS(747), + [anon_sym___stdcall] = ACTIONS(747), + [anon_sym___fastcall] = ACTIONS(747), + [anon_sym___thiscall] = ACTIONS(747), + [anon_sym___vectorcall] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21768,18 +21378,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21803,68 +21413,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1039), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(841), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_if_token2] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), + [57] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1035), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(757), + [aux_sym_preproc_include_token1] = ACTIONS(745), + [aux_sym_preproc_def_token1] = ACTIONS(745), + [aux_sym_preproc_if_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(745), + [sym_preproc_directive] = ACTIONS(745), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21872,19 +21481,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(374), - [anon_sym_typedef] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym___cdecl] = ACTIONS(745), + [anon_sym___clrcall] = ACTIONS(745), + [anon_sym___stdcall] = ACTIONS(745), + [anon_sym___fastcall] = ACTIONS(745), + [anon_sym___thiscall] = ACTIONS(745), + [anon_sym___vectorcall] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(751), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21903,18 +21513,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(745), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21938,68 +21548,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(794), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), + [58] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(761), + [sym_identifier] = ACTIONS(753), + [aux_sym_preproc_include_token1] = ACTIONS(743), + [aux_sym_preproc_def_token1] = ACTIONS(743), + [aux_sym_preproc_if_token1] = ACTIONS(743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(743), + [sym_preproc_directive] = ACTIONS(743), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22013,12 +21623,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym___cdecl] = ACTIONS(743), + [anon_sym___clrcall] = ACTIONS(743), + [anon_sym___stdcall] = ACTIONS(743), + [anon_sym___fastcall] = ACTIONS(743), + [anon_sym___thiscall] = ACTIONS(743), + [anon_sym___vectorcall] = ACTIONS(743), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -22039,10 +21649,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(631), + [anon_sym_else] = ACTIONS(743), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), + [anon_sym_case] = ACTIONS(743), + [anon_sym_default] = ACTIONS(743), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -22073,68 +21683,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1039), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(669), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(841), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_if_token2] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), + [59] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1035), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(757), + [aux_sym_preproc_include_token1] = ACTIONS(743), + [aux_sym_preproc_def_token1] = ACTIONS(743), + [aux_sym_preproc_if_token1] = ACTIONS(743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(743), + [sym_preproc_directive] = ACTIONS(743), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22142,19 +21751,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(374), - [anon_sym_typedef] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym___cdecl] = ACTIONS(743), + [anon_sym___clrcall] = ACTIONS(743), + [anon_sym___stdcall] = ACTIONS(743), + [anon_sym___fastcall] = ACTIONS(743), + [anon_sym___thiscall] = ACTIONS(743), + [anon_sym___vectorcall] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -22173,18 +21783,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(743), + [anon_sym_default] = ACTIONS(743), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22208,44 +21818,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [60] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1035), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(763), + [aux_sym_preproc_include_token1] = ACTIONS(636), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_LPAREN2] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(656), + [anon_sym___attribute__] = ACTIONS(659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym___declspec] = ACTIONS(665), + [anon_sym___cdecl] = ACTIONS(636), + [anon_sym___clrcall] = ACTIONS(636), + [anon_sym___stdcall] = ACTIONS(636), + [anon_sym___fastcall] = ACTIONS(636), + [anon_sym___thiscall] = ACTIONS(636), + [anon_sym___vectorcall] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(671), + [anon_sym_volatile] = ACTIONS(671), + [anon_sym_restrict] = ACTIONS(671), + [anon_sym___restrict__] = ACTIONS(671), + [anon_sym__Atomic] = ACTIONS(671), + [anon_sym__Noreturn] = ACTIONS(671), + [anon_sym_signed] = ACTIONS(674), + [anon_sym_unsigned] = ACTIONS(674), + [anon_sym_long] = ACTIONS(674), + [anon_sym_short] = ACTIONS(674), + [sym_primitive_type] = ACTIONS(677), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_union] = ACTIONS(686), + [anon_sym_if] = ACTIONS(777), + [anon_sym_else] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(786), + [anon_sym_for] = ACTIONS(789), + [anon_sym_return] = ACTIONS(792), + [anon_sym_break] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_goto] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(719), + [anon_sym_offsetof] = ACTIONS(722), + [anon_sym__Generic] = ACTIONS(725), + [anon_sym_asm] = ACTIONS(728), + [anon_sym___asm__] = ACTIONS(728), + [sym_number_literal] = ACTIONS(731), + [anon_sym_L_SQUOTE] = ACTIONS(734), + [anon_sym_u_SQUOTE] = ACTIONS(734), + [anon_sym_U_SQUOTE] = ACTIONS(734), + [anon_sym_u8_SQUOTE] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_L_DQUOTE] = ACTIONS(737), + [anon_sym_u_DQUOTE] = ACTIONS(737), + [anon_sym_U_DQUOTE] = ACTIONS(737), + [anon_sym_u8_DQUOTE] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(636), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_LPAREN2] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_typedef] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(656), + [anon_sym___attribute__] = ACTIONS(659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym___declspec] = ACTIONS(665), + [anon_sym___cdecl] = ACTIONS(636), + [anon_sym___clrcall] = ACTIONS(636), + [anon_sym___stdcall] = ACTIONS(636), + [anon_sym___fastcall] = ACTIONS(636), + [anon_sym___thiscall] = ACTIONS(636), + [anon_sym___vectorcall] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(671), + [anon_sym_volatile] = ACTIONS(671), + [anon_sym_restrict] = ACTIONS(671), + [anon_sym___restrict__] = ACTIONS(671), + [anon_sym__Atomic] = ACTIONS(671), + [anon_sym__Noreturn] = ACTIONS(671), + [anon_sym_signed] = ACTIONS(674), + [anon_sym_unsigned] = ACTIONS(674), + [anon_sym_long] = ACTIONS(674), + [anon_sym_short] = ACTIONS(674), + [sym_primitive_type] = ACTIONS(677), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_union] = ACTIONS(686), + [anon_sym_if] = ACTIONS(816), + [anon_sym_else] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(819), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(825), + [anon_sym_for] = ACTIONS(828), + [anon_sym_return] = ACTIONS(831), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_goto] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(719), + [anon_sym_offsetof] = ACTIONS(722), + [anon_sym__Generic] = ACTIONS(725), + [anon_sym_asm] = ACTIONS(728), + [anon_sym___asm__] = ACTIONS(728), + [sym_number_literal] = ACTIONS(731), + [anon_sym_L_SQUOTE] = ACTIONS(734), + [anon_sym_u_SQUOTE] = ACTIONS(734), + [anon_sym_U_SQUOTE] = ACTIONS(734), + [anon_sym_u8_SQUOTE] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_L_DQUOTE] = ACTIONS(737), + [anon_sym_u_DQUOTE] = ACTIONS(737), + [anon_sym_U_DQUOTE] = ACTIONS(737), + [anon_sym_u8_DQUOTE] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1041), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(671), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(843), + [aux_sym_preproc_include_token1] = ACTIONS(636), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(636), + [aux_sym_preproc_if_token2] = ACTIONS(636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_LPAREN2] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_typedef] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(656), + [anon_sym___attribute__] = ACTIONS(659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym___declspec] = ACTIONS(665), + [anon_sym___cdecl] = ACTIONS(636), + [anon_sym___clrcall] = ACTIONS(636), + [anon_sym___stdcall] = ACTIONS(636), + [anon_sym___fastcall] = ACTIONS(636), + [anon_sym___thiscall] = ACTIONS(636), + [anon_sym___vectorcall] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(671), + [anon_sym_volatile] = ACTIONS(671), + [anon_sym_restrict] = ACTIONS(671), + [anon_sym___restrict__] = ACTIONS(671), + [anon_sym__Atomic] = ACTIONS(671), + [anon_sym__Noreturn] = ACTIONS(671), + [anon_sym_signed] = ACTIONS(674), + [anon_sym_unsigned] = ACTIONS(674), + [anon_sym_long] = ACTIONS(674), + [anon_sym_short] = ACTIONS(674), + [sym_primitive_type] = ACTIONS(677), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_union] = ACTIONS(686), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(858), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(864), + [anon_sym_for] = ACTIONS(867), + [anon_sym_return] = ACTIONS(870), + [anon_sym_break] = ACTIONS(873), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(719), + [anon_sym_offsetof] = ACTIONS(722), + [anon_sym__Generic] = ACTIONS(725), + [anon_sym_asm] = ACTIONS(728), + [anon_sym___asm__] = ACTIONS(728), + [sym_number_literal] = ACTIONS(731), + [anon_sym_L_SQUOTE] = ACTIONS(734), + [anon_sym_u_SQUOTE] = ACTIONS(734), + [anon_sym_U_SQUOTE] = ACTIONS(734), + [anon_sym_u8_SQUOTE] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_L_DQUOTE] = ACTIONS(737), + [anon_sym_u_DQUOTE] = ACTIONS(737), + [anon_sym_U_DQUOTE] = ACTIONS(737), + [anon_sym_u8_DQUOTE] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + }, [63] = { - [sym_declaration] = STATE(474), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(669), - [sym_ms_declspec_modifier] = STATE(669), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(793), - [sym_comma_expression] = STATE(1365), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_declaration] = STATE(465), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(671), + [sym_ms_declspec_modifier] = STATE(671), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(803), + [sym_comma_expression] = STATE(1551), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22301,43 +22316,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(478), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(669), - [sym_ms_declspec_modifier] = STATE(669), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(782), - [sym_comma_expression] = STATE(1565), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_declaration] = STATE(441), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(671), + [sym_ms_declspec_modifier] = STATE(671), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(797), + [sym_comma_expression] = STATE(1472), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22394,42 +22409,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [65] = { [sym_declaration] = STATE(444), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(669), - [sym_ms_declspec_modifier] = STATE(669), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(671), + [sym_ms_declspec_modifier] = STATE(671), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1561), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22485,43 +22500,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(439), - [sym__declaration_modifiers] = STATE(669), - [sym__declaration_specifiers] = STATE(1037), - [sym_attribute_specifier] = STATE(669), - [sym_attribute_declaration] = STATE(669), - [sym_ms_declspec_modifier] = STATE(669), - [sym_storage_class_specifier] = STATE(669), - [sym_type_qualifier] = STATE(669), - [sym__type_specifier] = STATE(733), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(798), - [sym_comma_expression] = STATE(1547), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [aux_sym_sized_type_specifier_repeat1] = STATE(786), + [sym_declaration] = STATE(459), + [sym__declaration_modifiers] = STATE(671), + [sym__declaration_specifiers] = STATE(1040), + [sym_attribute_specifier] = STATE(671), + [sym_attribute_declaration] = STATE(671), + [sym_ms_declspec_modifier] = STATE(671), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [sym__type_specifier] = STATE(737), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(788), + [sym_comma_expression] = STATE(1569), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [aux_sym_sized_type_specifier_repeat1] = STATE(789), [sym_identifier] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22577,27 +22592,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym__expression] = STATE(611), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(613), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(613), - [sym_call_expression] = STATE(613), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(613), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(613), - [sym_initializer_list] = STATE(610), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [sym__expression] = STATE(624), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(603), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(603), + [sym_call_expression] = STATE(603), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(603), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(603), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), [sym_identifier] = ACTIONS(894), [anon_sym_COMMA] = ACTIONS(896), [anon_sym_RPAREN] = ACTIONS(896), @@ -22665,6 +22680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [68] = { + [sym_else_clause] = STATE(95), [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -22714,7 +22730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(914), [anon_sym_union] = ACTIONS(914), [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(914), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), @@ -22749,87 +22765,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym_offsetof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [aux_sym_preproc_else_token1] = ACTIONS(920), + [aux_sym_preproc_elif_token1] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [anon_sym_asm] = ACTIONS(920), + [anon_sym___asm__] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, [70] = { @@ -22917,90 +22933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [aux_sym_preproc_else_token1] = ACTIONS(924), - [aux_sym_preproc_elif_token1] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [72] = { [sym_identifier] = ACTIONS(928), [aux_sym_preproc_include_token1] = ACTIONS(928), [aux_sym_preproc_def_token1] = ACTIONS(928), @@ -23084,7 +23016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [73] = { + [72] = { [sym_identifier] = ACTIONS(932), [aux_sym_preproc_include_token1] = ACTIONS(932), [aux_sym_preproc_def_token1] = ACTIONS(932), @@ -23168,7 +23100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [74] = { + [73] = { [sym_identifier] = ACTIONS(936), [aux_sym_preproc_include_token1] = ACTIONS(936), [aux_sym_preproc_def_token1] = ACTIONS(936), @@ -23252,7 +23184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [75] = { + [74] = { [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(940), [aux_sym_preproc_def_token1] = ACTIONS(940), @@ -23336,6 +23268,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, [76] = { [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), @@ -23757,90 +23773,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RPAREN] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [aux_sym_preproc_else_token1] = ACTIONS(964), + [aux_sym_preproc_elif_token1] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, [82] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [aux_sym_preproc_else_token1] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [83] = { [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), [aux_sym_preproc_def_token1] = ACTIONS(964), @@ -23924,175 +24024,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym__expression] = STATE(655), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(613), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(613), - [sym_call_expression] = STATE(613), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(613), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(613), - [sym_initializer_list] = STATE(610), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_identifier] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), + [84] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [aux_sym_preproc_else_token1] = ACTIONS(972), + [aux_sym_preproc_elif_token1] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), [anon_sym_STAR] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), [anon_sym_AMP] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(976), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_typedef] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym___attribute__] = ACTIONS(978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(976), + [anon_sym___declspec] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_static] = ACTIONS(978), + [anon_sym_auto] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_volatile] = ACTIONS(978), + [anon_sym_restrict] = ACTIONS(978), + [anon_sym___restrict__] = ACTIONS(978), + [anon_sym__Atomic] = ACTIONS(978), + [anon_sym__Noreturn] = ACTIONS(978), + [anon_sym_signed] = ACTIONS(978), + [anon_sym_unsigned] = ACTIONS(978), + [anon_sym_long] = ACTIONS(978), + [anon_sym_short] = ACTIONS(978), + [sym_primitive_type] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_goto] = ACTIONS(978), [anon_sym_DASH_DASH] = ACTIONS(976), [anon_sym_PLUS_PLUS] = ACTIONS(976), [anon_sym_sizeof] = ACTIONS(978), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(978), + [anon_sym__Generic] = ACTIONS(978), + [anon_sym_asm] = ACTIONS(978), + [anon_sym___asm__] = ACTIONS(978), + [sym_number_literal] = ACTIONS(976), + [anon_sym_L_SQUOTE] = ACTIONS(976), + [anon_sym_u_SQUOTE] = ACTIONS(976), + [anon_sym_U_SQUOTE] = ACTIONS(976), + [anon_sym_u8_SQUOTE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_L_DQUOTE] = ACTIONS(976), + [anon_sym_u_DQUOTE] = ACTIONS(976), + [anon_sym_U_DQUOTE] = ACTIONS(976), + [anon_sym_u8_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), [sym_comment] = ACTIONS(3), }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym_offsetof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [anon_sym_asm] = ACTIONS(982), - [anon_sym___asm__] = ACTIONS(982), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [86] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [85] = { + [87] = { [sym_identifier] = ACTIONS(984), [aux_sym_preproc_include_token1] = ACTIONS(984), [aux_sym_preproc_def_token1] = ACTIONS(984), @@ -24176,7 +24360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [86] = { + [88] = { [sym_identifier] = ACTIONS(988), [aux_sym_preproc_include_token1] = ACTIONS(988), [aux_sym_preproc_def_token1] = ACTIONS(988), @@ -24260,7 +24444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [87] = { + [89] = { [sym_identifier] = ACTIONS(992), [aux_sym_preproc_include_token1] = ACTIONS(992), [aux_sym_preproc_def_token1] = ACTIONS(992), @@ -24344,91 +24528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [88] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [aux_sym_preproc_else_token1] = ACTIONS(948), - [aux_sym_preproc_elif_token1] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [89] = { + [90] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), @@ -24512,7 +24612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [90] = { + [91] = { [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), [aux_sym_preproc_def_token1] = ACTIONS(1000), @@ -24596,7 +24696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [91] = { + [92] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -24680,7 +24780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [92] = { + [93] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -24764,7 +24864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [93] = { + [94] = { [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), [aux_sym_preproc_def_token1] = ACTIONS(1012), @@ -24848,7 +24948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [94] = { + [95] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -24932,7 +25032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [95] = { + [96] = { [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), @@ -25016,7 +25116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [96] = { + [97] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -25100,91 +25200,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [97] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [aux_sym_preproc_else_token1] = ACTIONS(982), - [aux_sym_preproc_elif_token1] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym_offsetof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [anon_sym_asm] = ACTIONS(982), - [anon_sym___asm__] = ACTIONS(982), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [98] = { + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_if_token2] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [aux_sym_preproc_else_token1] = ACTIONS(978), + [aux_sym_preproc_elif_token1] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_typedef] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym___attribute__] = ACTIONS(978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(976), + [anon_sym___declspec] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_static] = ACTIONS(978), + [anon_sym_auto] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_volatile] = ACTIONS(978), + [anon_sym_restrict] = ACTIONS(978), + [anon_sym___restrict__] = ACTIONS(978), + [anon_sym__Atomic] = ACTIONS(978), + [anon_sym__Noreturn] = ACTIONS(978), + [anon_sym_signed] = ACTIONS(978), + [anon_sym_unsigned] = ACTIONS(978), + [anon_sym_long] = ACTIONS(978), + [anon_sym_short] = ACTIONS(978), + [sym_primitive_type] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_goto] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_sizeof] = ACTIONS(978), + [anon_sym_offsetof] = ACTIONS(978), + [anon_sym__Generic] = ACTIONS(978), + [anon_sym_asm] = ACTIONS(978), + [anon_sym___asm__] = ACTIONS(978), + [sym_number_literal] = ACTIONS(976), + [anon_sym_L_SQUOTE] = ACTIONS(976), + [anon_sym_u_SQUOTE] = ACTIONS(976), + [anon_sym_U_SQUOTE] = ACTIONS(976), + [anon_sym_u8_SQUOTE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_L_DQUOTE] = ACTIONS(976), + [anon_sym_u_DQUOTE] = ACTIONS(976), + [anon_sym_U_DQUOTE] = ACTIONS(976), + [anon_sym_u8_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), [sym_comment] = ACTIONS(3), }, - [98] = { + [99] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), @@ -25268,7 +25368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [99] = { + [100] = { [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), [aux_sym_preproc_def_token1] = ACTIONS(1032), @@ -25352,7 +25452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [100] = { + [101] = { [sym_identifier] = ACTIONS(1036), [aux_sym_preproc_include_token1] = ACTIONS(1036), [aux_sym_preproc_def_token1] = ACTIONS(1036), @@ -25436,7 +25536,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [101] = { + [102] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [aux_sym_preproc_else_token1] = ACTIONS(1028), + [aux_sym_preproc_elif_token1] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [103] = { [sym_identifier] = ACTIONS(1040), [aux_sym_preproc_include_token1] = ACTIONS(1040), [aux_sym_preproc_def_token1] = ACTIONS(1040), @@ -25520,256 +25704,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [aux_sym_preproc_else_token1] = ACTIONS(1044), - [aux_sym_preproc_elif_token1] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), + [104] = { + [sym__expression] = STATE(654), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(603), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(603), + [sym_call_expression] = STATE(603), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(603), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(603), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_identifier] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(1044), [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [103] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [aux_sym_preproc_else_token1] = ACTIONS(1048), - [aux_sym_preproc_elif_token1] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_PIPE_PIPE] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [104] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [aux_sym_preproc_else_token1] = ACTIONS(1052), - [aux_sym_preproc_elif_token1] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_STAR_EQ] = ACTIONS(896), + [anon_sym_SLASH_EQ] = ACTIONS(896), + [anon_sym_PERCENT_EQ] = ACTIONS(896), + [anon_sym_PLUS_EQ] = ACTIONS(896), + [anon_sym_DASH_EQ] = ACTIONS(896), + [anon_sym_LT_LT_EQ] = ACTIONS(896), + [anon_sym_GT_GT_EQ] = ACTIONS(896), + [anon_sym_AMP_EQ] = ACTIONS(896), + [anon_sym_CARET_EQ] = ACTIONS(896), + [anon_sym_PIPE_EQ] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1054), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DASH_GT] = ACTIONS(896), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, [105] = { @@ -25941,126 +25957,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [107] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(234), - [sym_attributed_statement] = STATE(234), - [sym_labeled_statement] = STATE(234), - [sym_expression_statement] = STATE(234), - [sym_if_statement] = STATE(234), - [sym_switch_statement] = STATE(234), - [sym_case_statement] = STATE(234), - [sym_while_statement] = STATE(234), - [sym_do_statement] = STATE(234), - [sym_for_statement] = STATE(234), - [sym_return_statement] = STATE(234), - [sym_break_statement] = STATE(234), - [sym_continue_statement] = STATE(234), - [sym_goto_statement] = STATE(234), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), [sym_identifier] = ACTIONS(1064), - [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(328), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [aux_sym_preproc_else_token1] = ACTIONS(1064), + [aux_sym_preproc_elif_token1] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -26070,7 +26087,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -26107,44 +26124,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [109] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(1553), - [sym_attributed_statement] = STATE(1553), - [sym_labeled_statement] = STATE(1553), - [sym_expression_statement] = STATE(1553), - [sym_if_statement] = STATE(1553), - [sym_switch_statement] = STATE(1553), - [sym_case_statement] = STATE(1553), - [sym_while_statement] = STATE(1553), - [sym_do_statement] = STATE(1553), - [sym_for_statement] = STATE(1553), - [sym_return_statement] = STATE(1553), - [sym_break_statement] = STATE(1553), - [sym_continue_statement] = STATE(1553), - [sym_goto_statement] = STATE(1553), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26152,20 +26169,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26190,43 +26207,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [110] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -26236,7 +26253,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -26273,376 +26290,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [111] = { - [sym_attribute_declaration] = STATE(111), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(1070), - [anon_sym_LPAREN2] = ACTIONS(1073), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [aux_sym_preproc_else_token1] = ACTIONS(1074), + [aux_sym_preproc_elif_token1] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), [anon_sym_BANG] = ACTIONS(1076), [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_goto] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1133), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1076), + [anon_sym___declspec] = ACTIONS(1074), + [anon_sym___cdecl] = ACTIONS(1074), + [anon_sym___clrcall] = ACTIONS(1074), + [anon_sym___stdcall] = ACTIONS(1074), + [anon_sym___fastcall] = ACTIONS(1074), + [anon_sym___thiscall] = ACTIONS(1074), + [anon_sym___vectorcall] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym___restrict__] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym__Noreturn] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_offsetof] = ACTIONS(1074), + [anon_sym__Generic] = ACTIONS(1074), + [anon_sym_asm] = ACTIONS(1074), + [anon_sym___asm__] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), - [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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), - [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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [aux_sym_preproc_else_token1] = ACTIONS(1082), + [aux_sym_preproc_elif_token1] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(214), - [sym_attributed_statement] = STATE(214), - [sym_labeled_statement] = STATE(214), - [sym_expression_statement] = STATE(214), - [sym_if_statement] = STATE(214), - [sym_switch_statement] = STATE(214), - [sym_case_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_do_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_return_statement] = STATE(214), - [sym_break_statement] = STATE(214), - [sym_continue_statement] = STATE(214), - [sym_goto_statement] = STATE(214), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), - [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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [aux_sym_preproc_else_token1] = ACTIONS(1086), + [aux_sym_preproc_elif_token1] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, [115] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(210), - [sym_attributed_statement] = STATE(210), - [sym_labeled_statement] = STATE(210), - [sym_expression_statement] = STATE(210), - [sym_if_statement] = STATE(210), - [sym_switch_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_do_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_return_statement] = STATE(210), - [sym_break_statement] = STATE(210), - [sym_continue_statement] = STATE(210), - [sym_goto_statement] = STATE(210), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token2] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [aux_sym_preproc_else_token1] = ACTIONS(1090), + [aux_sym_preproc_elif_token1] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1092), + [anon_sym___declspec] = ACTIONS(1090), + [anon_sym___cdecl] = ACTIONS(1090), + [anon_sym___clrcall] = ACTIONS(1090), + [anon_sym___stdcall] = ACTIONS(1090), + [anon_sym___fastcall] = ACTIONS(1090), + [anon_sym___thiscall] = ACTIONS(1090), + [anon_sym___vectorcall] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym___restrict__] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym__Noreturn] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [anon_sym_offsetof] = ACTIONS(1090), + [anon_sym__Generic] = ACTIONS(1090), + [anon_sym_asm] = ACTIONS(1090), + [anon_sym___asm__] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [116] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token2] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [aux_sym_preproc_else_token1] = ACTIONS(1094), + [aux_sym_preproc_elif_token1] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1096), + [anon_sym___declspec] = ACTIONS(1094), + [anon_sym___cdecl] = ACTIONS(1094), + [anon_sym___clrcall] = ACTIONS(1094), + [anon_sym___stdcall] = ACTIONS(1094), + [anon_sym___fastcall] = ACTIONS(1094), + [anon_sym___thiscall] = ACTIONS(1094), + [anon_sym___vectorcall] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym___restrict__] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym__Noreturn] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [anon_sym_offsetof] = ACTIONS(1094), + [anon_sym__Generic] = ACTIONS(1094), + [anon_sym_asm] = ACTIONS(1094), + [anon_sym___asm__] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [117] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(76), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26650,20 +26833,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26687,45 +26870,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [116] = { - [sym_attribute_declaration] = STATE(131), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [118] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(103), + [sym_attributed_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_case_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26733,20 +26916,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26770,45 +26953,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [117] = { - [sym_attribute_declaration] = STATE(111), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(1154), + [119] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [aux_sym_preproc_else_token1] = ACTIONS(1100), + [aux_sym_preproc_elif_token1] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [120] = { + [sym_attribute_declaration] = STATE(191), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26816,20 +27082,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26853,45 +27119,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [118] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(100), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [121] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(93), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26900,7 +27166,7 @@ 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_if] = ACTIONS(123), [anon_sym_switch] = ACTIONS(125), @@ -26936,45 +27202,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [119] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [122] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(1566), + [sym_attributed_statement] = STATE(1566), + [sym_labeled_statement] = STATE(1566), + [sym_expression_statement] = STATE(1566), + [sym_if_statement] = STATE(1566), + [sym_switch_statement] = STATE(1566), + [sym_case_statement] = STATE(1566), + [sym_while_statement] = STATE(1566), + [sym_do_statement] = STATE(1566), + [sym_for_statement] = STATE(1566), + [sym_return_statement] = STATE(1566), + [sym_break_statement] = STATE(1566), + [sym_continue_statement] = STATE(1566), + [sym_goto_statement] = STATE(1566), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26982,20 +27248,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27019,45 +27285,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [120] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [123] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27065,20 +27331,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27102,45 +27368,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [121] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(296), - [sym_attributed_statement] = STATE(296), - [sym_labeled_statement] = STATE(296), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(296), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(296), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(296), - [sym_for_statement] = STATE(296), - [sym_return_statement] = STATE(296), - [sym_break_statement] = STATE(296), - [sym_continue_statement] = STATE(296), - [sym_goto_statement] = STATE(296), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [124] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(261), + [sym_attributed_statement] = STATE(261), + [sym_labeled_statement] = STATE(261), + [sym_expression_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_switch_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(261), + [sym_break_statement] = STATE(261), + [sym_continue_statement] = STATE(261), + [sym_goto_statement] = STATE(261), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27148,20 +27414,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27185,45 +27451,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_attribute_declaration] = STATE(131), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [125] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27232,7 +27498,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -27268,44 +27534,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(1541), - [sym_attributed_statement] = STATE(1541), - [sym_labeled_statement] = STATE(1541), - [sym_expression_statement] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_switch_statement] = STATE(1541), - [sym_case_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_do_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_return_statement] = STATE(1541), - [sym_break_statement] = STATE(1541), - [sym_continue_statement] = STATE(1541), - [sym_goto_statement] = STATE(1541), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [126] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(220), + [sym_attributed_statement] = STATE(220), + [sym_labeled_statement] = STATE(220), + [sym_expression_statement] = STATE(220), + [sym_if_statement] = STATE(220), + [sym_switch_statement] = STATE(220), + [sym_case_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_do_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_return_statement] = STATE(220), + [sym_break_statement] = STATE(220), + [sym_continue_statement] = STATE(220), + [sym_goto_statement] = STATE(220), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27315,7 +27581,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -27351,45 +27617,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [124] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(303), - [sym_attributed_statement] = STATE(303), - [sym_labeled_statement] = STATE(303), - [sym_expression_statement] = STATE(303), - [sym_if_statement] = STATE(303), - [sym_switch_statement] = STATE(303), - [sym_case_statement] = STATE(303), - [sym_while_statement] = STATE(303), - [sym_do_statement] = STATE(303), - [sym_for_statement] = STATE(303), - [sym_return_statement] = STATE(303), - [sym_break_statement] = STATE(303), - [sym_continue_statement] = STATE(303), - [sym_goto_statement] = STATE(303), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [127] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27398,7 +27664,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -27434,45 +27700,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [125] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(297), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(297), - [sym_switch_statement] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_while_statement] = STATE(297), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(297), - [sym_return_statement] = STATE(297), - [sym_break_statement] = STATE(297), - [sym_continue_statement] = STATE(297), - [sym_goto_statement] = STATE(297), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [128] = { + [sym_attribute_declaration] = STATE(191), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27480,103 +27746,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [126] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), - [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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27600,45 +27783,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [129] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27646,20 +27829,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27683,45 +27866,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [128] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [130] = { + [sym_attribute_declaration] = STATE(191), + [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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27729,20 +27912,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27766,128 +27949,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_attribute_declaration] = STATE(129), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1133), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [131] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27895,20 +27995,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27932,45 +28032,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_attribute_declaration] = STATE(129), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1064), + [132] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27978,20 +28078,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28015,45 +28115,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [132] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(307), - [sym_attributed_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [133] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28061,20 +28161,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28098,45 +28198,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_attribute_declaration] = STATE(117), - [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(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [134] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(105), + [sym_attributed_statement] = STATE(105), + [sym_labeled_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_if_statement] = STATE(105), + [sym_switch_statement] = STATE(105), + [sym_case_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_break_statement] = STATE(105), + [sym_continue_statement] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28144,20 +28244,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28181,45 +28281,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [135] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(70), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28227,20 +28327,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28264,44 +28364,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_attribute_declaration] = STATE(159), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(159), + [136] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28311,7 +28411,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -28347,45 +28447,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [137] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(297), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(297), + [sym_expression_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_switch_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(297), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(297), + [sym_goto_statement] = STATE(297), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28393,20 +28493,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28430,45 +28530,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [137] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(304), - [sym_attributed_statement] = STATE(304), - [sym_labeled_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_switch_statement] = STATE(304), - [sym_case_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_goto_statement] = STATE(304), - [sym__expression] = STATE(777), - [sym_comma_expression] = STATE(1392), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1154), + [138] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28476,20 +28576,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(374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28513,45 +28613,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(101), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_case_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [139] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(87), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28560,7 +28660,7 @@ 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_if] = ACTIONS(123), [anon_sym_switch] = ACTIONS(125), @@ -28596,45 +28696,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_attribute_declaration] = STATE(200), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [140] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [aux_sym_preproc_else_token1] = ACTIONS(1104), + [aux_sym_preproc_elif_token1] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28643,7 +28826,7 @@ 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_if] = ACTIONS(123), [anon_sym_switch] = ACTIONS(125), @@ -28679,45 +28862,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(103), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_case_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [142] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28726,7 +28909,7 @@ 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_if] = ACTIONS(123), [anon_sym_switch] = ACTIONS(125), @@ -28762,211 +28945,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(104), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(104), - [sym_expression_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_switch_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_while_statement] = STATE(104), - [sym_do_statement] = STATE(104), - [sym_for_statement] = STATE(104), - [sym_return_statement] = STATE(104), - [sym_break_statement] = STATE(104), - [sym_continue_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), - [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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [143] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [aux_sym_preproc_else_token1] = ACTIONS(1108), + [aux_sym_preproc_elif_token1] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), - [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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [144] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [aux_sym_preproc_else_token1] = ACTIONS(1112), + [aux_sym_preproc_elif_token1] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(106), - [sym_attributed_statement] = STATE(106), - [sym_labeled_statement] = STATE(106), - [sym_expression_statement] = STATE(106), - [sym_if_statement] = STATE(106), - [sym_switch_statement] = STATE(106), - [sym_case_statement] = STATE(106), - [sym_while_statement] = STATE(106), - [sym_do_statement] = STATE(106), - [sym_for_statement] = STATE(106), - [sym_return_statement] = STATE(106), - [sym_break_statement] = STATE(106), - [sym_continue_statement] = STATE(106), - [sym_goto_statement] = STATE(106), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [145] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [aux_sym_preproc_else_token1] = ACTIONS(1116), + [aux_sym_preproc_elif_token1] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [aux_sym_preproc_else_token1] = ACTIONS(1120), + [aux_sym_preproc_elif_token1] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(82), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28975,7 +29324,7 @@ 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_if] = ACTIONS(123), [anon_sym_switch] = ACTIONS(125), @@ -29011,45 +29360,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [148] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [aux_sym_preproc_else_token1] = ACTIONS(1124), + [aux_sym_preproc_elif_token1] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29057,20 +29489,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29094,45 +29526,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(76), - [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_case_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [150] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(161), + [sym_attributed_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29140,20 +29572,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29177,45 +29609,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(73), - [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_case_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [151] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [aux_sym_preproc_else_token1] = ACTIONS(1130), + [aux_sym_preproc_elif_token1] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_attribute_declaration] = STATE(149), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29223,20 +29738,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29260,128 +29775,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [147] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(85), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [153] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29389,20 +29821,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29426,45 +29858,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_attribute_declaration] = STATE(200), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [154] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29472,20 +29904,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29509,44 +29941,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [155] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(1430), + [sym_attributed_statement] = STATE(1430), + [sym_labeled_statement] = STATE(1430), + [sym_expression_statement] = STATE(1430), + [sym_if_statement] = STATE(1430), + [sym_switch_statement] = STATE(1430), + [sym_case_statement] = STATE(1430), + [sym_while_statement] = STATE(1430), + [sym_do_statement] = STATE(1430), + [sym_for_statement] = STATE(1430), + [sym_return_statement] = STATE(1430), + [sym_break_statement] = STATE(1430), + [sym_continue_statement] = STATE(1430), + [sym_goto_statement] = STATE(1430), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29556,7 +29988,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -29592,44 +30024,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [156] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_comment] = ACTIONS(3), + }, + [157] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(200), + [sym_attributed_statement] = STATE(200), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(200), + [sym_switch_statement] = STATE(200), + [sym_case_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_do_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_return_statement] = STATE(200), + [sym_break_statement] = STATE(200), + [sym_continue_statement] = STATE(200), + [sym_goto_statement] = STATE(200), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29639,7 +30154,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -29675,543 +30190,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [152] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1216), - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1220), + [158] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [aux_sym_preproc_else_token1] = ACTIONS(1218), + [aux_sym_preproc_elif_token1] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [157] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1224), + [159] = { + [sym_attribute_declaration] = STATE(159), + [sym_compound_statement] = STATE(235), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(235), + [sym_expression_statement] = STATE(235), + [sym_if_statement] = STATE(235), + [sym_switch_statement] = STATE(235), + [sym_case_statement] = STATE(235), + [sym_while_statement] = STATE(235), + [sym_do_statement] = STATE(235), + [sym_for_statement] = STATE(235), + [sym_return_statement] = STATE(235), + [sym_break_statement] = STATE(235), + [sym_continue_statement] = STATE(235), + [sym_goto_statement] = STATE(235), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_attribute_declaration] = STATE(200), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [160] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30219,20 +30402,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -30256,127 +30439,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_attribute_declaration] = STATE(159), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1133), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), + [161] = { + [sym_else_clause] = STATE(271), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(220), - [sym_attributed_statement] = STATE(220), - [sym_labeled_statement] = STATE(220), - [sym_expression_statement] = STATE(220), - [sym_if_statement] = STATE(220), - [sym_switch_statement] = STATE(220), - [sym_case_statement] = STATE(220), - [sym_while_statement] = STATE(220), - [sym_do_statement] = STATE(220), - [sym_for_statement] = STATE(220), - [sym_return_statement] = STATE(220), - [sym_break_statement] = STATE(220), - [sym_continue_statement] = STATE(220), - [sym_goto_statement] = STATE(220), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [162] = { + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [aux_sym_preproc_else_token1] = ACTIONS(1266), + [aux_sym_preproc_elif_token1] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(213), + [sym_attributed_statement] = STATE(213), + [sym_labeled_statement] = STATE(213), + [sym_expression_statement] = STATE(213), + [sym_if_statement] = STATE(213), + [sym_switch_statement] = STATE(213), + [sym_case_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_do_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_return_statement] = STATE(213), + [sym_break_statement] = STATE(213), + [sym_continue_statement] = STATE(213), + [sym_goto_statement] = STATE(213), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30386,7 +30652,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -30422,7 +30688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [161] = { + [164] = { [sym_identifier] = ACTIONS(1270), [aux_sym_preproc_include_token1] = ACTIONS(1270), [aux_sym_preproc_def_token1] = ACTIONS(1270), @@ -30505,90 +30771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(218), - [sym_attributed_statement] = STATE(218), - [sym_labeled_statement] = STATE(218), - [sym_expression_statement] = STATE(218), - [sym_if_statement] = STATE(218), - [sym_switch_statement] = STATE(218), - [sym_case_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_do_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_return_statement] = STATE(218), - [sym_break_statement] = STATE(218), - [sym_continue_statement] = STATE(218), - [sym_goto_statement] = STATE(218), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [163] = { + [165] = { [sym_identifier] = ACTIONS(1274), [aux_sym_preproc_include_token1] = ACTIONS(1274), [aux_sym_preproc_def_token1] = ACTIONS(1274), @@ -30671,7 +30854,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [164] = { + [166] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_attribute_declaration] = STATE(149), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), + [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(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [168] = { [sym_identifier] = ACTIONS(1278), [aux_sym_preproc_include_token1] = ACTIONS(1278), [aux_sym_preproc_def_token1] = ACTIONS(1278), @@ -30754,45 +31103,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_case_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_goto_statement] = STATE(212), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [169] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(72), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30800,20 +31232,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -30837,128 +31269,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token2] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [aux_sym_preproc_else_token1] = ACTIONS(1282), - [aux_sym_preproc_elif_token1] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(1562), - [sym_attributed_statement] = STATE(1562), - [sym_labeled_statement] = STATE(1562), - [sym_expression_statement] = STATE(1562), - [sym_if_statement] = STATE(1562), - [sym_switch_statement] = STATE(1562), - [sym_case_statement] = STATE(1562), - [sym_while_statement] = STATE(1562), - [sym_do_statement] = STATE(1562), - [sym_for_statement] = STATE(1562), - [sym_return_statement] = STATE(1562), - [sym_break_statement] = STATE(1562), - [sym_continue_statement] = STATE(1562), - [sym_goto_statement] = STATE(1562), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [171] = { + [sym_attribute_declaration] = STATE(149), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30966,20 +31315,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31003,128 +31352,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token2] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [aux_sym_preproc_else_token1] = ACTIONS(1286), - [aux_sym_preproc_elif_token1] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [172] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(302), + [sym_attributed_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_case_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(302), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31132,20 +31398,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31169,45 +31435,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(273), - [sym_attributed_statement] = STATE(273), - [sym_labeled_statement] = STATE(273), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(273), - [sym_switch_statement] = STATE(273), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(273), - [sym_do_statement] = STATE(273), - [sym_for_statement] = STATE(273), - [sym_return_statement] = STATE(273), - [sym_break_statement] = STATE(273), - [sym_continue_statement] = STATE(273), - [sym_goto_statement] = STATE(273), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [173] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(303), + [sym_attributed_statement] = STATE(303), + [sym_labeled_statement] = STATE(303), + [sym_expression_statement] = STATE(303), + [sym_if_statement] = STATE(303), + [sym_switch_statement] = STATE(303), + [sym_case_statement] = STATE(303), + [sym_while_statement] = STATE(303), + [sym_do_statement] = STATE(303), + [sym_for_statement] = STATE(303), + [sym_return_statement] = STATE(303), + [sym_break_statement] = STATE(303), + [sym_continue_statement] = STATE(303), + [sym_goto_statement] = STATE(303), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31215,20 +31481,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31252,127 +31518,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token2] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [aux_sym_preproc_else_token1] = ACTIONS(1290), - [aux_sym_preproc_elif_token1] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [174] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -31382,7 +31565,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -31418,127 +31601,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [aux_sym_preproc_else_token1] = ACTIONS(1294), - [aux_sym_preproc_elif_token1] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(236), - [sym_attributed_statement] = STATE(236), - [sym_labeled_statement] = STATE(236), - [sym_expression_statement] = STATE(236), - [sym_if_statement] = STATE(236), - [sym_switch_statement] = STATE(236), - [sym_case_statement] = STATE(236), - [sym_while_statement] = STATE(236), - [sym_do_statement] = STATE(236), - [sym_for_statement] = STATE(236), - [sym_return_statement] = STATE(236), - [sym_break_statement] = STATE(236), - [sym_continue_statement] = STATE(236), - [sym_goto_statement] = STATE(236), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [175] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -31548,7 +31648,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -31584,45 +31684,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(1426), - [sym_attributed_statement] = STATE(1426), - [sym_labeled_statement] = STATE(1426), - [sym_expression_statement] = STATE(1426), - [sym_if_statement] = STATE(1426), - [sym_switch_statement] = STATE(1426), - [sym_case_statement] = STATE(1426), - [sym_while_statement] = STATE(1426), - [sym_do_statement] = STATE(1426), - [sym_for_statement] = STATE(1426), - [sym_return_statement] = STATE(1426), - [sym_break_statement] = STATE(1426), - [sym_continue_statement] = STATE(1426), - [sym_goto_statement] = STATE(1426), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [176] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(80), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31630,20 +31813,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31667,44 +31850,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [176] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [178] = { + [sym_attribute_declaration] = STATE(159), + [sym_compound_statement] = STATE(235), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(235), + [sym_expression_statement] = STATE(235), + [sym_if_statement] = STATE(235), + [sym_switch_statement] = STATE(235), + [sym_case_statement] = STATE(235), + [sym_while_statement] = STATE(235), + [sym_do_statement] = STATE(235), + [sym_for_statement] = STATE(235), + [sym_return_statement] = STATE(235), + [sym_break_statement] = STATE(235), + [sym_continue_statement] = STATE(235), + [sym_goto_statement] = STATE(235), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(159), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -31714,7 +31897,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -31750,626 +31933,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, [179] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(89), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1133), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(77), + [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_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym__expression] = STATE(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32377,20 +31979,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32414,45 +32016,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [180] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(307), + [sym_attributed_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_goto_statement] = STATE(307), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32460,20 +32062,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32497,45 +32099,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_declaration] = STATE(131), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [181] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(265), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(265), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(265), + [sym_switch_statement] = STATE(265), + [sym_case_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_do_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_return_statement] = STATE(265), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(265), + [sym_goto_statement] = STATE(265), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32544,7 +32146,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -32580,44 +32182,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), + [182] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), [sym_identifier] = ACTIONS(1068), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -32627,7 +32229,7 @@ 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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -32663,45 +32265,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_declaration] = STATE(135), - [sym_compound_statement] = STATE(245), - [sym_attributed_statement] = STATE(245), - [sym_labeled_statement] = STATE(245), - [sym_expression_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_switch_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_do_statement] = STATE(245), - [sym_for_statement] = STATE(245), - [sym_return_statement] = STATE(245), - [sym_break_statement] = STATE(245), - [sym_continue_statement] = STATE(245), - [sym_goto_statement] = STATE(245), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [183] = { + [sym_attribute_declaration] = STATE(149), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32709,20 +32311,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32746,128 +32348,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [189] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(231), - [sym_attributed_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_case_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_goto_statement] = STATE(231), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [184] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(68), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32875,28 +32394,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), [anon_sym_U_SQUOTE] = ACTIONS(91), @@ -32912,45 +32431,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [185] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32958,20 +32477,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32995,45 +32514,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(69), - [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_case_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [186] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_attribute_declaration] = STATE(149), + [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(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33041,20 +32643,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33078,45 +32680,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_attribute_declaration] = STATE(131), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [188] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(310), + [sym_attributed_statement] = STATE(310), + [sym_labeled_statement] = STATE(310), + [sym_expression_statement] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(310), + [sym_case_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_do_statement] = STATE(310), + [sym_for_statement] = STATE(310), + [sym_return_statement] = STATE(310), + [sym_break_statement] = STATE(310), + [sym_continue_statement] = STATE(310), + [sym_goto_statement] = STATE(310), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33124,20 +32726,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33161,45 +32763,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [189] = { + [sym_else_clause] = STATE(214), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_labeled_statement] = STATE(309), + [sym_expression_statement] = STATE(309), + [sym_if_statement] = STATE(309), + [sym_switch_statement] = STATE(309), + [sym_case_statement] = STATE(309), + [sym_while_statement] = STATE(309), + [sym_do_statement] = STATE(309), + [sym_for_statement] = STATE(309), + [sym_return_statement] = STATE(309), + [sym_break_statement] = STATE(309), + [sym_continue_statement] = STATE(309), + [sym_goto_statement] = STATE(309), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33207,20 +32892,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33244,45 +32929,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(228), - [sym_attributed_statement] = STATE(228), - [sym_labeled_statement] = STATE(228), - [sym_expression_statement] = STATE(228), - [sym_if_statement] = STATE(228), - [sym_switch_statement] = STATE(228), - [sym_case_statement] = STATE(228), - [sym_while_statement] = STATE(228), - [sym_do_statement] = STATE(228), - [sym_for_statement] = STATE(228), - [sym_return_statement] = STATE(228), - [sym_break_statement] = STATE(228), - [sym_continue_statement] = STATE(228), - [sym_goto_statement] = STATE(228), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [191] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(72), + [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_case_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(776), + [sym_comma_expression] = STATE(1501), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1098), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33290,20 +32975,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(125), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_do] = ACTIONS(133), + [anon_sym_for] = ACTIONS(135), + [anon_sym_return] = ACTIONS(137), + [anon_sym_break] = ACTIONS(139), + [anon_sym_continue] = ACTIONS(141), + [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33327,45 +33012,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_attribute_declaration] = STATE(200), - [sym_compound_statement] = STATE(82), - [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_case_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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [192] = { + [sym_attribute_declaration] = STATE(202), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33373,20 +33058,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33410,45 +33095,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_attribute_declaration] = STATE(200), - [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(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1156), + [193] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33456,20 +33141,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33493,45 +33178,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(221), - [sym_attributed_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [194] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(304), + [sym_attributed_statement] = STATE(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym__expression] = STATE(781), + [sym_comma_expression] = STATE(1397), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33539,20 +33224,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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(348), - [anon_sym_for] = ACTIONS(350), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(354), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_goto] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_if] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_case] = ACTIONS(392), + [anon_sym_default] = ACTIONS(394), + [anon_sym_while] = ACTIONS(396), + [anon_sym_do] = ACTIONS(398), + [anon_sym_for] = ACTIONS(400), + [anon_sym_return] = ACTIONS(402), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_goto] = ACTIONS(408), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33576,45 +33261,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(222), - [sym_attributed_statement] = STATE(222), - [sym_labeled_statement] = STATE(222), - [sym_expression_statement] = STATE(222), - [sym_if_statement] = STATE(222), - [sym_switch_statement] = STATE(222), - [sym_case_statement] = STATE(222), - [sym_while_statement] = STATE(222), - [sym_do_statement] = STATE(222), - [sym_for_statement] = STATE(222), - [sym_return_statement] = STATE(222), - [sym_break_statement] = STATE(222), - [sym_continue_statement] = STATE(222), - [sym_goto_statement] = STATE(222), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [195] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33623,7 +33308,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -33659,45 +33344,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(89), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(772), - [sym_comma_expression] = STATE(1497), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(1156), + [196] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(208), + [sym_attributed_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33705,20 +33390,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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33742,45 +33427,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_attribute_declaration] = STATE(135), - [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(789), - [sym_comma_expression] = STATE(1475), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1068), + [197] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33788,20 +33473,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33825,45 +33510,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_attribute_declaration] = STATE(131), - [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(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [198] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33872,7 +33557,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -33908,45 +33593,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_attribute_declaration] = STATE(131), - [sym_compound_statement] = STATE(225), - [sym_attributed_statement] = STATE(225), - [sym_labeled_statement] = STATE(225), - [sym_expression_statement] = STATE(225), - [sym_if_statement] = STATE(225), - [sym_switch_statement] = STATE(225), - [sym_case_statement] = STATE(225), - [sym_while_statement] = STATE(225), - [sym_do_statement] = STATE(225), - [sym_for_statement] = STATE(225), - [sym_return_statement] = STATE(225), - [sym_break_statement] = STATE(225), - [sym_continue_statement] = STATE(225), - [sym_goto_statement] = STATE(225), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1443), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [aux_sym_attributed_declarator_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1064), + [199] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(243), + [sym_attributed_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_goto_statement] = STATE(243), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33955,7 +33640,7 @@ 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(328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(334), [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(340), @@ -33991,176 +33676,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym___asm__] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [206] = { + [200] = { + [sym_else_clause] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(916), [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), [aux_sym_preproc_ifdef_token1] = ACTIONS(914), [aux_sym_preproc_ifdef_token2] = ACTIONS(914), [sym_preproc_directive] = ACTIONS(914), @@ -34203,7 +33725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(914), [anon_sym_union] = ACTIONS(914), [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1334), [anon_sym_switch] = ACTIONS(914), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), @@ -34237,663 +33759,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [201] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), + [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(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [202] = { + [sym_attribute_declaration] = STATE(202), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym_offsetof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [203] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(1545), + [sym_attributed_statement] = STATE(1545), + [sym_labeled_statement] = STATE(1545), + [sym_expression_statement] = STATE(1545), + [sym_if_statement] = STATE(1545), + [sym_switch_statement] = STATE(1545), + [sym_case_statement] = STATE(1545), + [sym_while_statement] = STATE(1545), + [sym_do_statement] = STATE(1545), + [sym_for_statement] = STATE(1545), + [sym_return_statement] = STATE(1545), + [sym_break_statement] = STATE(1545), + [sym_continue_statement] = STATE(1545), + [sym_goto_statement] = STATE(1545), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_if_token2] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [204] = { + [sym_attribute_declaration] = STATE(192), + [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(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), + [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(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [205] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(286), + [sym_attributed_statement] = STATE(286), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_switch_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_do_statement] = STATE(286), + [sym_for_statement] = STATE(286), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(286), + [sym_continue_statement] = STATE(286), + [sym_goto_statement] = STATE(286), + [sym__expression] = STATE(827), + [sym_comma_expression] = STATE(1403), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1072), + [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(328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_case] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(348), + [anon_sym_for] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_break] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_goto] = ACTIONS(358), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [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(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [206] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(1557), + [sym_attributed_statement] = STATE(1557), + [sym_labeled_statement] = STATE(1557), + [sym_expression_statement] = STATE(1557), + [sym_if_statement] = STATE(1557), + [sym_switch_statement] = STATE(1557), + [sym_case_statement] = STATE(1557), + [sym_while_statement] = STATE(1557), + [sym_do_statement] = STATE(1557), + [sym_for_statement] = STATE(1557), + [sym_return_statement] = STATE(1557), + [sym_break_statement] = STATE(1557), + [sym_continue_statement] = STATE(1557), + [sym_goto_statement] = STATE(1557), + [sym__expression] = STATE(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [207] = { + [sym_attribute_declaration] = STATE(178), + [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(792), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1068), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [215] = { + [208] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(930), [sym_identifier] = ACTIONS(928), [aux_sym_preproc_include_token1] = ACTIONS(928), [aux_sym_preproc_def_token1] = ACTIONS(928), @@ -34921,7 +34451,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(928), [anon_sym___vectorcall] = ACTIONS(928), [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), [anon_sym_static] = ACTIONS(928), [anon_sym_auto] = ACTIONS(928), [anon_sym_register] = ACTIONS(928), @@ -34975,1401 +34504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(956), - [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(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [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(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [233] = { + [210] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), @@ -36451,1078 +34586,1078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym_offsetof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [211] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [212] = { + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [213] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [214] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [215] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [216] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [217] = { + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_if_token2] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_typedef] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym___attribute__] = ACTIONS(978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(976), + [anon_sym___declspec] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_static] = ACTIONS(978), + [anon_sym_auto] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_volatile] = ACTIONS(978), + [anon_sym_restrict] = ACTIONS(978), + [anon_sym___restrict__] = ACTIONS(978), + [anon_sym__Atomic] = ACTIONS(978), + [anon_sym__Noreturn] = ACTIONS(978), + [anon_sym_signed] = ACTIONS(978), + [anon_sym_unsigned] = ACTIONS(978), + [anon_sym_long] = ACTIONS(978), + [anon_sym_short] = ACTIONS(978), + [sym_primitive_type] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_goto] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_sizeof] = ACTIONS(978), + [anon_sym_offsetof] = ACTIONS(978), + [anon_sym__Generic] = ACTIONS(978), + [anon_sym_asm] = ACTIONS(978), + [anon_sym___asm__] = ACTIONS(978), + [sym_number_literal] = ACTIONS(976), + [anon_sym_L_SQUOTE] = ACTIONS(976), + [anon_sym_u_SQUOTE] = ACTIONS(976), + [anon_sym_U_SQUOTE] = ACTIONS(976), + [anon_sym_u8_SQUOTE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_L_DQUOTE] = ACTIONS(976), + [anon_sym_u_DQUOTE] = ACTIONS(976), + [anon_sym_U_DQUOTE] = ACTIONS(976), + [anon_sym_u8_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [219] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [220] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [221] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [223] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [anon_sym_asm] = ACTIONS(920), + [anon_sym___asm__] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [247] = { + [224] = { + [ts_builtin_sym_end] = ACTIONS(1010), [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), [sym_preproc_directive] = ACTIONS(1008), @@ -37599,499 +35734,991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(956), - [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(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [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(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), + [225] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [anon_sym_asm] = ACTIONS(920), + [anon_sym___asm__] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [230] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [231] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [232] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [234] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [235] = { + [ts_builtin_sym_end] = ACTIONS(934), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [254] = { + [236] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [237] = { [ts_builtin_sym_end] = ACTIONS(1014), [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), @@ -38173,90 +36800,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [238] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1010), + [239] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, + [240] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -38284,6 +36992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1008), [anon_sym___vectorcall] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_static] = ACTIONS(1008), [anon_sym_auto] = ACTIONS(1008), [anon_sym_register] = ACTIONS(1008), @@ -38337,171 +37046,499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [241] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [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(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [245] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [259] = { + [246] = { + [sym_identifier] = ACTIONS(956), + [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(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [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(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [247] = { [sym_identifier] = ACTIONS(952), [aux_sym_preproc_include_token1] = ACTIONS(952), [aux_sym_preproc_def_token1] = ACTIONS(952), @@ -38524,235 +37561,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___declspec] = ACTIONS(952), [anon_sym___cdecl] = ACTIONS(952), [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(942), + [248] = { [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(940), [aux_sym_preproc_def_token1] = ACTIONS(940), [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), [aux_sym_preproc_ifdef_token1] = ACTIONS(940), [aux_sym_preproc_ifdef_token2] = ACTIONS(940), [sym_preproc_directive] = ACTIONS(940), @@ -38829,1815 +37702,1816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym_offsetof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [anon_sym_asm] = ACTIONS(982), - [anon_sym___asm__] = ACTIONS(982), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [249] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [250] = { + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [251] = { + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [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(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [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(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [252] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [253] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(956), + [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(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [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(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [255] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [256] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [257] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [258] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [260] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [261] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [262] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [263] = { + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [264] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [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(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [265] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [267] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [268] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [269] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [270] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [285] = { + [271] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), [sym_preproc_directive] = ACTIONS(1016), @@ -40661,7 +39535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1016), [anon_sym___vectorcall] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), [anon_sym_static] = ACTIONS(1016), [anon_sym_auto] = ACTIONS(1016), [anon_sym_register] = ACTIONS(1016), @@ -40715,89 +39588,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), + [272] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [287] = { + [276] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [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(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [277] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -40879,176 +40080,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [278] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym_offsetof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [anon_sym_asm] = ACTIONS(982), - [anon_sym___asm__] = ACTIONS(982), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [279] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1038), + [280] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [281] = { [sym_identifier] = ACTIONS(1036), [aux_sym_preproc_include_token1] = ACTIONS(1036), [aux_sym_preproc_def_token1] = ACTIONS(1036), [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), [sym_preproc_directive] = ACTIONS(1036), @@ -41059,401 +40342,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1036), [anon_sym_STAR] = ACTIONS(1038), [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(956), - [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(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [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(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [282] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [283] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [295] = { + [284] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1030), [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), @@ -41481,7 +40683,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1028), [anon_sym___vectorcall] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), [anon_sym_static] = ACTIONS(1028), [anon_sym_auto] = ACTIONS(1028), [anon_sym_register] = ACTIONS(1028), @@ -41535,89 +40736,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [286] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [297] = { + [288] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [289] = { [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), [aux_sym_preproc_def_token1] = ACTIONS(944), @@ -41699,668 +41064,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [290] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [291] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [anon_sym_asm] = ACTIONS(920), + [anon_sym___asm__] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [292] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym_offsetof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [294] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [296] = { + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_typedef] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym___attribute__] = ACTIONS(978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(976), + [anon_sym___declspec] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_static] = ACTIONS(978), + [anon_sym_auto] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_volatile] = ACTIONS(978), + [anon_sym_restrict] = ACTIONS(978), + [anon_sym___restrict__] = ACTIONS(978), + [anon_sym__Atomic] = ACTIONS(978), + [anon_sym__Noreturn] = ACTIONS(978), + [anon_sym_signed] = ACTIONS(978), + [anon_sym_unsigned] = ACTIONS(978), + [anon_sym_long] = ACTIONS(978), + [anon_sym_short] = ACTIONS(978), + [sym_primitive_type] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_goto] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_sizeof] = ACTIONS(978), + [anon_sym_offsetof] = ACTIONS(978), + [anon_sym__Generic] = ACTIONS(978), + [anon_sym_asm] = ACTIONS(978), + [anon_sym___asm__] = ACTIONS(978), + [sym_number_literal] = ACTIONS(976), + [anon_sym_L_SQUOTE] = ACTIONS(976), + [anon_sym_u_SQUOTE] = ACTIONS(976), + [anon_sym_U_SQUOTE] = ACTIONS(976), + [anon_sym_u8_SQUOTE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_L_DQUOTE] = ACTIONS(976), + [anon_sym_u_DQUOTE] = ACTIONS(976), + [anon_sym_U_DQUOTE] = ACTIONS(976), + [anon_sym_u8_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(978), [sym_comment] = ACTIONS(3), }, - [306] = { + [297] = { + [ts_builtin_sym_end] = ACTIONS(1042), [sym_identifier] = ACTIONS(1040), [aux_sym_preproc_include_token1] = ACTIONS(1040), [aux_sym_preproc_def_token1] = ACTIONS(1040), [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), [sym_preproc_directive] = ACTIONS(1040), @@ -42437,1711 +41720,1319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [310] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [311] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), + [298] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), + [299] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), + [300] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [316] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1220), + [301] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_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_const] = 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_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), - [sym_null] = ACTIONS(1360), + [302] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [318] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1364), + [303] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym___restrict__] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym__Noreturn] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), + [anon_sym__Generic] = ACTIONS(1008), + [anon_sym_asm] = ACTIONS(1008), + [anon_sym___asm__] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [319] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1216), + [304] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), + [305] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), + [306] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [322] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1212), + [307] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [323] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1208), + [308] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), + [309] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [325] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1204), + [310] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [326] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1364), + [311] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), + [312] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [328] = { + [313] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [314] = { [ts_builtin_sym_end] = ACTIONS(1276), [sym_identifier] = ACTIONS(1274), [aux_sym_preproc_include_token1] = ACTIONS(1274), @@ -44222,2032 +43113,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - }, - [333] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [334] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token2] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token2] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [345] = { - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1212), + [315] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [350] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1216), + [316] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), + [317] = { + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [352] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1224), + [318] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), + [319] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), [sym_comment] = ACTIONS(3), }, - [354] = { + [320] = { [sym_identifier] = ACTIONS(1274), [aux_sym_preproc_include_token1] = ACTIONS(1274), [aux_sym_preproc_def_token1] = ACTIONS(1274), @@ -46328,250 +43599,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_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_const] = 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_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), - [sym_null] = ACTIONS(1364), + [321] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), + [322] = { + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), + [323] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [358] = { + [324] = { + [ts_builtin_sym_end] = ACTIONS(1272), [sym_identifier] = ACTIONS(1270), [aux_sym_preproc_include_token1] = ACTIONS(1270), [aux_sym_preproc_def_token1] = ACTIONS(1270), @@ -46599,7 +43871,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1270), [anon_sym___vectorcall] = ACTIONS(1270), [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), [anon_sym_static] = ACTIONS(1270), [anon_sym_auto] = ACTIONS(1270), [anon_sym_register] = ACTIONS(1270), @@ -46652,93 +43923,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), + [325] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [360] = { + [326] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1092), + [anon_sym___declspec] = ACTIONS(1090), + [anon_sym___cdecl] = ACTIONS(1090), + [anon_sym___clrcall] = ACTIONS(1090), + [anon_sym___stdcall] = ACTIONS(1090), + [anon_sym___fastcall] = ACTIONS(1090), + [anon_sym___thiscall] = ACTIONS(1090), + [anon_sym___vectorcall] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym___restrict__] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym__Noreturn] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [anon_sym_offsetof] = ACTIONS(1090), + [anon_sym__Generic] = ACTIONS(1090), + [anon_sym_asm] = ACTIONS(1090), + [anon_sym___asm__] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token2] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [sym_null] = ACTIONS(1274), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + }, + [332] = { [sym_identifier] = ACTIONS(1270), [aux_sym_preproc_include_token1] = ACTIONS(1270), [aux_sym_preproc_def_token1] = ACTIONS(1270), [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), [sym_preproc_directive] = ACTIONS(1270), @@ -46762,6 +44518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1270), [anon_sym___vectorcall] = ACTIONS(1270), [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), [anon_sym_static] = ACTIONS(1270), [anon_sym_auto] = ACTIONS(1270), [anon_sym_register] = ACTIONS(1270), @@ -46814,12 +44571,1956 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1272), + [333] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1076), + [anon_sym___declspec] = ACTIONS(1074), + [anon_sym___cdecl] = ACTIONS(1074), + [anon_sym___clrcall] = ACTIONS(1074), + [anon_sym___stdcall] = ACTIONS(1074), + [anon_sym___fastcall] = ACTIONS(1074), + [anon_sym___thiscall] = ACTIONS(1074), + [anon_sym___vectorcall] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym___restrict__] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym__Noreturn] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_offsetof] = ACTIONS(1074), + [anon_sym__Generic] = ACTIONS(1074), + [anon_sym_asm] = ACTIONS(1074), + [anon_sym___asm__] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1076), + [anon_sym___declspec] = ACTIONS(1074), + [anon_sym___cdecl] = ACTIONS(1074), + [anon_sym___clrcall] = ACTIONS(1074), + [anon_sym___stdcall] = ACTIONS(1074), + [anon_sym___fastcall] = ACTIONS(1074), + [anon_sym___thiscall] = ACTIONS(1074), + [anon_sym___vectorcall] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym___restrict__] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym__Noreturn] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_offsetof] = ACTIONS(1074), + [anon_sym__Generic] = ACTIONS(1074), + [anon_sym_asm] = ACTIONS(1074), + [anon_sym___asm__] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token2] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1096), + [anon_sym___declspec] = ACTIONS(1094), + [anon_sym___cdecl] = ACTIONS(1094), + [anon_sym___clrcall] = ACTIONS(1094), + [anon_sym___stdcall] = ACTIONS(1094), + [anon_sym___fastcall] = ACTIONS(1094), + [anon_sym___thiscall] = ACTIONS(1094), + [anon_sym___vectorcall] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym___restrict__] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym__Noreturn] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [anon_sym_offsetof] = ACTIONS(1094), + [anon_sym__Generic] = ACTIONS(1094), + [anon_sym_asm] = ACTIONS(1094), + [anon_sym___asm__] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token2] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1092), + [anon_sym___declspec] = ACTIONS(1090), + [anon_sym___cdecl] = ACTIONS(1090), + [anon_sym___clrcall] = ACTIONS(1090), + [anon_sym___stdcall] = ACTIONS(1090), + [anon_sym___fastcall] = ACTIONS(1090), + [anon_sym___thiscall] = ACTIONS(1090), + [anon_sym___vectorcall] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym___restrict__] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym__Noreturn] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [anon_sym_offsetof] = ACTIONS(1090), + [anon_sym__Generic] = ACTIONS(1090), + [anon_sym_asm] = ACTIONS(1090), + [anon_sym___asm__] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + }, + [349] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1076), + [anon_sym___declspec] = ACTIONS(1074), + [anon_sym___cdecl] = ACTIONS(1074), + [anon_sym___clrcall] = ACTIONS(1074), + [anon_sym___stdcall] = ACTIONS(1074), + [anon_sym___fastcall] = ACTIONS(1074), + [anon_sym___thiscall] = ACTIONS(1074), + [anon_sym___vectorcall] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym___restrict__] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym__Noreturn] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_offsetof] = ACTIONS(1074), + [anon_sym__Generic] = ACTIONS(1074), + [anon_sym_asm] = ACTIONS(1074), + [anon_sym___asm__] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [355] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + }, + [356] = { + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [sym_null] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + }, + [357] = { [sym_identifier] = ACTIONS(1270), [aux_sym_preproc_include_token1] = ACTIONS(1270), [aux_sym_preproc_def_token1] = ACTIONS(1270), [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), [sym_preproc_directive] = ACTIONS(1270), @@ -46895,174 +46596,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, - [362] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1224), + [358] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_identifier] = ACTIONS(1274), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), + [359] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [364] = { + [360] = { + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1096), + [anon_sym___declspec] = ACTIONS(1094), + [anon_sym___cdecl] = ACTIONS(1094), + [anon_sym___clrcall] = ACTIONS(1094), + [anon_sym___stdcall] = ACTIONS(1094), + [anon_sym___fastcall] = ACTIONS(1094), + [anon_sym___thiscall] = ACTIONS(1094), + [anon_sym___vectorcall] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym___restrict__] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym__Noreturn] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [anon_sym_offsetof] = ACTIONS(1094), + [anon_sym__Generic] = ACTIONS(1094), + [anon_sym_asm] = ACTIONS(1094), + [anon_sym___asm__] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [sym_null] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1280), [sym_identifier] = ACTIONS(1278), [aux_sym_preproc_include_token1] = ACTIONS(1278), [aux_sym_preproc_def_token1] = ACTIONS(1278), [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token2] = ACTIONS(1278), [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), [sym_preproc_directive] = ACTIONS(1278), @@ -47138,687 +47082,1092 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, + [364] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, [366] = { - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token2] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, [367] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, [368] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, [369] = { - [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_RBRACE] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = 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_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_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), - [sym_null] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [370] = { - [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_const] = 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_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_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), - [sym_null] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, [371] = { - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, [372] = { - [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_const] = 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_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), - [sym_null] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1092), + [anon_sym___declspec] = ACTIONS(1090), + [anon_sym___cdecl] = ACTIONS(1090), + [anon_sym___clrcall] = ACTIONS(1090), + [anon_sym___stdcall] = ACTIONS(1090), + [anon_sym___fastcall] = ACTIONS(1090), + [anon_sym___thiscall] = ACTIONS(1090), + [anon_sym___vectorcall] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym___restrict__] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym__Noreturn] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [anon_sym_offsetof] = ACTIONS(1090), + [anon_sym__Generic] = ACTIONS(1090), + [anon_sym_asm] = ACTIONS(1090), + [anon_sym___asm__] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), [sym_comment] = ACTIONS(3), }, [373] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1456), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1096), + [anon_sym___declspec] = ACTIONS(1094), + [anon_sym___cdecl] = ACTIONS(1094), + [anon_sym___clrcall] = ACTIONS(1094), + [anon_sym___stdcall] = ACTIONS(1094), + [anon_sym___fastcall] = ACTIONS(1094), + [anon_sym___thiscall] = ACTIONS(1094), + [anon_sym___vectorcall] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym___restrict__] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym__Noreturn] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [anon_sym_offsetof] = ACTIONS(1094), + [anon_sym__Generic] = ACTIONS(1094), + [anon_sym_asm] = ACTIONS(1094), + [anon_sym___asm__] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [374] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [375] = { + [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_const] = 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_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_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), + [sym_null] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [376] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [377] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1470), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47832,10 +48181,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -47863,58 +48212,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym__expression] = STATE(611), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_initializer_list] = STATE(610), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), + [378] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1543), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), [sym_identifier] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), + [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_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_const] = 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_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -47922,8 +48273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -47940,39 +48289,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1451), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [379] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1463), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47986,10 +48335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48017,39 +48366,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1498), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [380] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1495), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48063,10 +48412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48094,39 +48443,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1539), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [381] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1456), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48140,10 +48489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48171,39 +48520,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1464), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [382] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1455), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48217,10 +48566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48248,39 +48597,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1452), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [383] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1460), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48294,10 +48643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48325,39 +48674,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1491), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [384] = { + [sym_type_qualifier] = STATE(898), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym__expression] = STATE(786), + [sym_comma_expression] = STATE(1466), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_type_descriptor] = STATE(1502), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(898), + [aux_sym_sized_type_specifier_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48371,10 +48720,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -48402,60 +48751,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_type_qualifier] = STATE(889), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(909), - [sym_enum_specifier] = STATE(909), - [sym_struct_specifier] = STATE(909), - [sym_union_specifier] = STATE(909), - [sym__expression] = STATE(783), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(636), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_type_descriptor] = STATE(1459), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_macro_type_specifier] = STATE(909), - [aux_sym_type_definition_repeat1] = STATE(889), - [aux_sym_sized_type_specifier_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1374), + [385] = { + [sym__expression] = STATE(624), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(640), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(640), + [sym_call_expression] = STATE(640), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(640), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(640), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_identifier] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), [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_const] = 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_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(896), + [anon_sym_PIPE_PIPE] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_COLON] = ACTIONS(896), + [anon_sym_QMARK] = ACTIONS(896), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -48463,6 +48810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DASH_GT] = ACTIONS(896), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -48479,42 +48828,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym__expression] = STATE(655), - [sym_conditional_expression] = STATE(635), - [sym_assignment_expression] = STATE(635), - [sym_pointer_expression] = STATE(667), - [sym_unary_expression] = STATE(635), - [sym_binary_expression] = STATE(635), - [sym_update_expression] = STATE(635), - [sym_cast_expression] = STATE(635), - [sym_sizeof_expression] = STATE(635), - [sym_offsetof_expression] = STATE(635), - [sym_generic_expression] = STATE(635), - [sym_subscript_expression] = STATE(667), - [sym_call_expression] = STATE(667), - [sym_gnu_asm_expression] = STATE(635), - [sym_field_expression] = STATE(667), - [sym_compound_literal_expression] = STATE(635), - [sym_parenthesized_expression] = STATE(667), - [sym_initializer_list] = STATE(610), - [sym_char_literal] = STATE(635), - [sym_concatenated_string] = STATE(635), - [sym_string_literal] = STATE(499), - [sym_identifier] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1388), + [386] = { + [sym__expression] = STATE(654), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(669), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_offsetof_expression] = STATE(606), + [sym_generic_expression] = STATE(606), + [sym_subscript_expression] = STATE(669), + [sym_call_expression] = STATE(669), + [sym_gnu_asm_expression] = STATE(606), + [sym_field_expression] = STATE(669), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(669), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(485), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1392), [anon_sym_SLASH] = ACTIONS(906), [anon_sym_PERCENT] = ACTIONS(896), [anon_sym_PIPE_PIPE] = ACTIONS(896), [anon_sym_AMP_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(906), [anon_sym_CARET] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(1050), [anon_sym_EQ_EQ] = ACTIONS(896), [anon_sym_BANG_EQ] = ACTIONS(896), [anon_sym_GT] = ACTIONS(906), @@ -48527,9 +48876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(896), [anon_sym_RBRACK] = ACTIONS(896), [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1396), [anon_sym_offsetof] = ACTIONS(83), [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), @@ -48552,79 +48901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_identifier] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [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_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_const] = 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_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_COLON] = ACTIONS(1396), - [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), - [sym_null] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [384] = { + [387] = { [sym_identifier] = ACTIONS(1398), [anon_sym_COMMA] = ACTIONS(1400), [anon_sym_RPAREN] = ACTIONS(1400), @@ -48696,77 +48973,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [385] = { + [388] = { [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1405), - [anon_sym_L_SQUOTE] = ACTIONS(1405), - [anon_sym_u_SQUOTE] = ACTIONS(1405), - [anon_sym_U_SQUOTE] = ACTIONS(1405), - [anon_sym_u8_SQUOTE] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_L_DQUOTE] = ACTIONS(1405), - [anon_sym_u_DQUOTE] = ACTIONS(1405), - [anon_sym_U_DQUOTE] = ACTIONS(1405), - [anon_sym_u8_DQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [sym_null] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1404), + [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_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym_const] = 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_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_COLON] = ACTIONS(1404), + [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), + [sym_null] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [sym_identifier] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym___attribute__] = ACTIONS(1413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym___declspec] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_auto] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_inline] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_volatile] = ACTIONS(1413), + [anon_sym_restrict] = ACTIONS(1413), + [anon_sym___restrict__] = ACTIONS(1413), + [anon_sym__Atomic] = ACTIONS(1413), + [anon_sym__Noreturn] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1413), + [anon_sym_unsigned] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [sym_primitive_type] = ACTIONS(1413), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_struct] = ACTIONS(1413), + [anon_sym_union] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [sym_null] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 26, + [0] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1418), 1, + sym_identifier, + ACTIONS(1420), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1422), 1, + anon_sym_RPAREN, + ACTIONS(1424), 1, + anon_sym_LPAREN2, + ACTIONS(1426), 1, + anon_sym_STAR, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(1430), 1, + anon_sym_LBRACK, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(949), 1, + sym__declaration_specifiers, + STATE(1131), 1, + sym__declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(1206), 1, + sym__abstract_declarator, + STATE(1400), 1, + sym_ms_based_modifier, + STATE(1249), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [121] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48781,19 +49221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(908), 1, anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1414), 1, + ACTIONS(1432), 1, anon_sym_COMMA, - ACTIONS(1416), 1, + ACTIONS(1434), 1, anon_sym_RBRACE, - ACTIONS(1418), 1, + ACTIONS(1436), 1, anon_sym_LBRACK, - ACTIONS(1420), 1, + ACTIONS(1438), 1, anon_sym_DOT, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(715), 1, + STATE(724), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48810,14 +49250,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - STATE(1266), 2, + STATE(1268), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(95), 3, sym_true, sym_false, sym_null, - STATE(1145), 3, + STATE(1149), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -48833,13 +49273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48853,97 +49293,6 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [113] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1422), 1, - sym_identifier, - ACTIONS(1424), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1426), 1, - anon_sym_RPAREN, - ACTIONS(1428), 1, - anon_sym_LPAREN2, - ACTIONS(1430), 1, - anon_sym_STAR, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(1434), 1, - anon_sym_LBRACK, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(982), 1, - sym__declaration_specifiers, - STATE(1127), 1, - sym__declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(1198), 1, - sym__abstract_declarator, - STATE(1395), 1, - sym_ms_based_modifier, - STATE(1246), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, [234] = 23, ACTIONS(3), 1, sym_comment, @@ -48953,35 +49302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_STAR, - ACTIONS(1438), 1, + ACTIONS(1442), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(831), 1, + STATE(858), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(395), 2, + STATE(401), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49000,20 +49349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49027,59 +49376,50 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [340] = 25, + [340] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1418), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - anon_sym_DOT, - ACTIONS(1442), 1, - anon_sym_RBRACE, - STATE(499), 1, + ACTIONS(1386), 1, + anon_sym_LPAREN2, + ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, + anon_sym_sizeof, + ACTIONS(1446), 1, + anon_sym_STAR, + ACTIONS(1448), 1, + anon_sym_RBRACK, + STATE(485), 1, sym_string_literal, - STATE(794), 1, + STATE(869), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1337), 2, - sym_initializer_list, - sym_initializer_pair, + STATE(399), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(95), 3, sym_true, sym_false, sym_null, - STATE(1145), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -49092,13 +49432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + ACTIONS(1444), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49112,7 +49459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [450] = 23, + [446] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49121,35 +49468,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1444), 1, + ACTIONS(1450), 1, anon_sym_STAR, - ACTIONS(1446), 1, + ACTIONS(1452), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(856), 1, + STATE(835), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(394), 2, + STATE(650), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49168,20 +49515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49195,7 +49542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [556] = 23, + [552] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49204,35 +49551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1448), 1, + ACTIONS(1454), 1, anon_sym_STAR, - ACTIONS(1450), 1, + ACTIONS(1456), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(866), 1, + STATE(841), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(392), 2, + STATE(650), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49251,20 +49598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49278,7 +49625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [662] = 23, + [658] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49287,35 +49634,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1452), 1, + ACTIONS(1458), 1, anon_sym_STAR, - ACTIONS(1454), 1, + ACTIONS(1460), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(850), 1, + STATE(847), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(394), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49334,20 +49681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49361,7 +49708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [768] = 23, + [764] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49370,35 +49717,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1456), 1, + ACTIONS(1462), 1, anon_sym_STAR, - ACTIONS(1458), 1, + ACTIONS(1464), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(855), 1, + STATE(863), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(399), 2, + STATE(400), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49417,20 +49764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49444,7 +49791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [874] = 23, + [870] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49453,35 +49800,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1460), 1, + ACTIONS(1466), 1, anon_sym_STAR, - ACTIONS(1462), 1, + ACTIONS(1468), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(844), 1, + STATE(861), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(395), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49500,20 +49847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49527,7 +49874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [980] = 23, + [976] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49536,35 +49883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1464), 1, + ACTIONS(1470), 1, anon_sym_STAR, - ACTIONS(1466), 1, + ACTIONS(1472), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(828), 1, + STATE(848), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(650), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49583,20 +49930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49610,7 +49957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1086] = 23, + [1082] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49619,35 +49966,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1468), 1, + ACTIONS(1474), 1, anon_sym_STAR, - ACTIONS(1470), 1, + ACTIONS(1476), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(865), 1, + STATE(854), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(397), 2, + STATE(650), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49666,20 +50013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49693,7 +50040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1192] = 23, + [1188] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49702,35 +50049,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, ACTIONS(1392), 1, + anon_sym_AMP, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(1472), 1, + ACTIONS(1478), 1, anon_sym_STAR, - ACTIONS(1474), 1, + ACTIONS(1480), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(845), 1, + STATE(849), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(650), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(95), 3, @@ -49749,20 +50096,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, + ACTIONS(1444), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49776,7 +50123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1298] = 25, + [1294] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49791,17 +50138,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(908), 1, anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1418), 1, + ACTIONS(1436), 1, anon_sym_LBRACK, - ACTIONS(1420), 1, + ACTIONS(1438), 1, anon_sym_DOT, - ACTIONS(1476), 1, + ACTIONS(1482), 1, anon_sym_RBRACE, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(794), 1, + STATE(799), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49818,14 +50165,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - STATE(1337), 2, + STATE(1338), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(95), 3, sym_true, sym_false, sym_null, - STATE(1145), 3, + STATE(1149), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -49841,13 +50188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49861,50 +50208,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1408] = 23, + [1404] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, + ACTIONS(908), 1, + anon_sym_LBRACE, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1388), 1, - anon_sym_AMP, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1478), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - anon_sym_RBRACK, - STATE(499), 1, + sym_identifier, + ACTIONS(1436), 1, + anon_sym_LBRACK, + ACTIONS(1438), 1, + anon_sym_DOT, + ACTIONS(1484), 1, + anon_sym_RBRACE, + STATE(485), 1, sym_string_literal, - STATE(838), 1, + STATE(799), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1390), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1338), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(95), 3, sym_true, sym_false, sym_null, + STATE(1149), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -49917,20 +50273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1440), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49959,15 +50308,15 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(908), 1, anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1418), 1, + ACTIONS(1436), 1, anon_sym_LBRACK, - ACTIONS(1420), 1, + ACTIONS(1438), 1, anon_sym_DOT, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(794), 1, + STATE(799), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49984,14 +50333,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - STATE(1337), 2, + STATE(1338), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(95), 3, sym_true, sym_false, sym_null, - STATE(1145), 3, + STATE(1149), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -50007,13 +50356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50044,30 +50393,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1488), 1, - aux_sym_preproc_if_token2, ACTIONS(1492), 1, + aux_sym_preproc_if_token2, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1543), 2, + STATE(1428), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50081,7 +50430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50094,7 +50443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50102,7 +50451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(417), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50128,198 +50477,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1484), 1, - aux_sym_preproc_def_token1, ACTIONS(1486), 1, - aux_sym_preproc_if_token1, - ACTIONS(1492), 1, - aux_sym_preproc_else_token1, - ACTIONS(1494), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, - sym_preproc_directive, - ACTIONS(1498), 1, - aux_sym_preproc_if_token2, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, - sym__declaration_specifiers, - ACTIONS(1490), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1468), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(411), 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, - [1841] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, - aux_sym_preproc_else_token1, - ACTIONS(1494), 1, - aux_sym_preproc_elif_token1, ACTIONS(1496), 1, - sym_preproc_directive, - ACTIONS(1500), 1, - aux_sym_preproc_if_token2, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, - sym__declaration_specifiers, - ACTIONS(1490), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1430), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(407), 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, - [1951] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1484), 1, - aux_sym_preproc_def_token1, - ACTIONS(1486), 1, - aux_sym_preproc_if_token1, - ACTIONS(1492), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1502), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1424), 2, + STATE(1437), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50333,7 +50514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50346,7 +50527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50354,7 +50535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(413), 8, + STATE(410), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50363,7 +50544,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, - [2061] = 26, + [1841] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50380,30 +50561,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1504), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1431), 2, + STATE(1434), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50417,7 +50598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50430,7 +50611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50438,7 +50619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(412), 8, + STATE(408), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50447,7 +50628,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, - [2171] = 26, + [1951] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50464,30 +50645,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1506), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1523), 2, + STATE(1427), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50501,7 +50682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50514,7 +50695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50522,7 +50703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(401), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50531,7 +50712,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, - [2281] = 26, + [2061] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50548,30 +50729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1508), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1422), 2, + STATE(1546), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50585,7 +50766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50598,7 +50779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50606,7 +50787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50615,7 +50796,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, - [2391] = 26, + [2171] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50632,30 +50813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1510), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1545), 2, + STATE(1475), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50669,7 +50850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50682,7 +50863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50690,7 +50871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50699,7 +50880,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, - [2501] = 26, + [2281] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50716,30 +50897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1512), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1561), 2, + STATE(1565), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50753,7 +50934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50766,7 +50947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50774,7 +50955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50783,7 +50964,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, - [2611] = 26, + [2391] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50800,30 +50981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1514), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1536), 2, + STATE(1474), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50837,7 +51018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50850,7 +51031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50858,7 +51039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50867,7 +51048,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, - [2721] = 26, + [2501] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50884,30 +51065,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1516), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1501), 2, + STATE(1567), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -50921,7 +51102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50934,7 +51115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50942,7 +51123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50951,7 +51132,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, - [2831] = 26, + [2611] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50968,30 +51149,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, ACTIONS(1518), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1470), 2, + STATE(1539), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -51005,7 +51186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51018,7 +51199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -51026,7 +51207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -51035,7 +51216,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, - [2941] = 26, + [2721] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -51052,30 +51233,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, + ACTIONS(1490), 1, + aux_sym_preproc_if_token1, + ACTIONS(1496), 1, + aux_sym_preproc_else_token1, + ACTIONS(1498), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1500), 1, + sym_preproc_directive, + ACTIONS(1520), 1, + aux_sym_preproc_if_token2, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1046), 1, + sym__declaration_specifiers, + ACTIONS(1494), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1510), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(427), 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, + [2831] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1488), 1, + aux_sym_preproc_def_token1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, + ACTIONS(1500), 1, + sym_preproc_directive, + ACTIONS(1522), 1, + aux_sym_preproc_if_token2, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1046), 1, + sym__declaration_specifiers, + ACTIONS(1494), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1548), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(427), 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, + [2941] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1488), 1, + aux_sym_preproc_def_token1, + ACTIONS(1490), 1, + aux_sym_preproc_if_token1, ACTIONS(1496), 1, + aux_sym_preproc_else_token1, + ACTIONS(1498), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1500), 1, sym_preproc_directive, - ACTIONS(1520), 1, + ACTIONS(1524), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1407), 2, + STATE(1412), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -51089,7 +51438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51102,7 +51451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -51110,7 +51459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -51136,30 +51485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1488), 1, aux_sym_preproc_def_token1, - ACTIONS(1486), 1, + ACTIONS(1490), 1, aux_sym_preproc_if_token1, - ACTIONS(1492), 1, + ACTIONS(1496), 1, aux_sym_preproc_else_token1, - ACTIONS(1494), 1, + ACTIONS(1498), 1, aux_sym_preproc_elif_token1, - ACTIONS(1496), 1, + ACTIONS(1500), 1, sym_preproc_directive, - ACTIONS(1522), 1, + ACTIONS(1526), 1, aux_sym_preproc_if_token2, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1046), 1, sym__declaration_specifiers, - ACTIONS(1490), 2, + ACTIONS(1494), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1563), 2, + STATE(1535), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -51173,7 +51522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51186,7 +51535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -51194,7 +51543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(408), 8, + STATE(416), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -51206,19 +51555,19 @@ static const uint16_t ts_small_parse_table[] = { [3161] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1537), 1, + ACTIONS(1541), 1, anon_sym_SEMI, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1544), 1, + ACTIONS(1548), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51229,7 +51578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1526), 12, + ACTIONS(1530), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51242,7 +51591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -51255,7 +51604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1524), 15, + ACTIONS(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51271,20 +51620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3240] = 10, + [3240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1540), 1, + ACTIONS(1541), 1, + anon_sym_SEMI, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1548), 1, + ACTIONS(1552), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51295,20 +51646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 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(1526), 13, + ACTIONS(1530), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51316,13 +51654,25 @@ 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(1524), 15, + ACTIONS(1536), 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(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51338,22 +51688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3317] = 11, + [3319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1537), 1, - anon_sym_SEMI, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1550), 1, + ACTIONS(1554), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51364,20 +51712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1526), 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(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -51390,7 +51725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1524), 15, + ACTIONS(1530), 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(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51409,17 +51758,17 @@ static const uint16_t ts_small_parse_table[] = { [3396] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1550), 1, + ACTIONS(1552), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51430,7 +51779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -51443,7 +51792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1526), 13, + ACTIONS(1530), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51457,7 +51806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1524), 15, + ACTIONS(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51473,20 +51822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3473] = 10, + [3473] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1540), 1, + ACTIONS(1541), 1, + anon_sym_SEMI, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1544), 1, + ACTIONS(1554), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51497,20 +51848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 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(1526), 13, + ACTIONS(1530), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51518,13 +51856,25 @@ 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(1524), 15, + ACTIONS(1536), 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(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51540,22 +51890,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3550] = 11, + [3552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1537), 1, + ACTIONS(1541), 1, anon_sym_SEMI, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1552), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51566,7 +51916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1526), 12, + ACTIONS(1530), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51579,7 +51929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -51592,7 +51942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1524), 15, + ACTIONS(1528), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -51608,22 +51958,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3629] = 11, + [3631] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1537), 1, + ACTIONS(1544), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1546), 1, + anon_sym_EQ, + ACTIONS(1556), 1, + anon_sym_COLON, + ACTIONS(1550), 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(1536), 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(1530), 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, - ACTIONS(1540), 1, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1528), 15, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3708] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1532), 1, + anon_sym_LPAREN2, + ACTIONS(1538), 1, + anon_sym_STAR, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, ACTIONS(1548), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -51634,7 +52049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1526), 12, + ACTIONS(1536), 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(1530), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -51642,12 +52070,130 @@ 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(1532), 12, + ACTIONS(1528), 15, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3785] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1558), 1, + sym_identifier, + ACTIONS(1561), 1, + aux_sym_preproc_def_token1, + ACTIONS(1564), 1, + aux_sym_preproc_if_token1, + ACTIONS(1572), 1, + sym_preproc_directive, + ACTIONS(1578), 1, + anon_sym___attribute__, + ACTIONS(1581), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1584), 1, + anon_sym___declspec, + ACTIONS(1593), 1, + sym_primitive_type, + ACTIONS(1596), 1, + anon_sym_enum, + ACTIONS(1599), 1, + anon_sym_struct, + ACTIONS(1602), 1, + anon_sym_union, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1046), 1, + sym__declaration_specifiers, + ACTIONS(1569), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1567), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1575), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(427), 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, + [3887] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1532), 1, + anon_sym_LPAREN2, + ACTIONS(1538), 1, + anon_sym_STAR, + ACTIONS(1544), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1546), 1, + anon_sym_EQ, + ACTIONS(1550), 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(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -51660,152 +52206,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1524), 15, + ACTIONS(1530), 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(1528), 15, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3961] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1605), 1, + aux_sym_preproc_def_token1, + ACTIONS(1607), 1, + aux_sym_preproc_if_token1, + ACTIONS(1611), 1, + sym_preproc_directive, + ACTIONS(1613), 1, + anon_sym_RBRACE, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1050), 1, + sym__declaration_specifiers, + ACTIONS(1609), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(430), 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, + [4061] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1558), 1, + sym_identifier, + ACTIONS(1578), 1, + anon_sym___attribute__, + ACTIONS(1581), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1584), 1, + anon_sym___declspec, + ACTIONS(1593), 1, + sym_primitive_type, + ACTIONS(1596), 1, + anon_sym_enum, + ACTIONS(1599), 1, + anon_sym_struct, + ACTIONS(1602), 1, + anon_sym_union, + ACTIONS(1615), 1, + aux_sym_preproc_def_token1, + ACTIONS(1618), 1, + aux_sym_preproc_if_token1, + ACTIONS(1624), 1, + sym_preproc_directive, + ACTIONS(1627), 1, + anon_sym_RBRACE, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1050), 1, + sym__declaration_specifiers, + ACTIONS(1621), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1575), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(430), 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, + [4161] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1605), 1, + aux_sym_preproc_def_token1, + ACTIONS(1607), 1, + aux_sym_preproc_if_token1, + ACTIONS(1611), 1, + sym_preproc_directive, + ACTIONS(1629), 1, + anon_sym_RBRACE, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1050), 1, + sym__declaration_specifiers, + ACTIONS(1609), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(429), 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, + [4261] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1558), 1, + sym_identifier, + ACTIONS(1567), 1, + aux_sym_preproc_if_token2, + ACTIONS(1578), 1, + anon_sym___attribute__, + ACTIONS(1581), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1584), 1, + anon_sym___declspec, + ACTIONS(1593), 1, + sym_primitive_type, + ACTIONS(1596), 1, + anon_sym_enum, + ACTIONS(1599), 1, + anon_sym_struct, + ACTIONS(1602), 1, + anon_sym_union, + ACTIONS(1631), 1, + aux_sym_preproc_def_token1, + ACTIONS(1634), 1, + aux_sym_preproc_if_token1, + ACTIONS(1640), 1, + sym_preproc_directive, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym__declaration_specifiers, + ACTIONS(1637), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1575), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1587), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [3708] = 10, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(432), 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, + [4361] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, - anon_sym_LPAREN2, - ACTIONS(1534), 1, - anon_sym_STAR, - ACTIONS(1540), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, - anon_sym_EQ, - ACTIONS(1552), 1, - anon_sym_COLON, - ACTIONS(1546), 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(1532), 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(1526), 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(1524), 15, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1643), 1, + aux_sym_preproc_def_token1, + ACTIONS(1645), 1, + aux_sym_preproc_if_token1, + ACTIONS(1647), 1, + aux_sym_preproc_if_token2, + ACTIONS(1651), 1, + sym_preproc_directive, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym__declaration_specifiers, + ACTIONS(1649), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + STATE(671), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(436), 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, + [4461] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, sym_identifier, - [3785] = 23, + ACTIONS(1653), 1, + anon_sym_RPAREN, + STATE(485), 1, + sym_string_literal, + STATE(741), 1, + sym__expression, + STATE(1247), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [4559] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1554), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1557), 1, - aux_sym_preproc_def_token1, - ACTIONS(1560), 1, - aux_sym_preproc_if_token1, - ACTIONS(1568), 1, - sym_preproc_directive, - ACTIONS(1574), 1, + ACTIONS(1655), 1, + anon_sym_RPAREN, + STATE(485), 1, + sym_string_literal, + STATE(754), 1, + sym__expression, + STATE(1258), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [4657] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1577), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1580), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1589), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1592), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1595), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1598), 1, + ACTIONS(55), 1, anon_sym_union, - STATE(733), 1, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1643), 1, + aux_sym_preproc_def_token1, + ACTIONS(1645), 1, + aux_sym_preproc_if_token1, + ACTIONS(1651), 1, + sym_preproc_directive, + ACTIONS(1657), 1, + aux_sym_preproc_if_token2, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1048), 1, sym__declaration_specifiers, - ACTIONS(1565), 2, + ACTIONS(1649), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1563), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1586), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1571), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1583), 6, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -51813,7 +52841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(432), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -51822,155 +52850,307 @@ 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, - [3887] = 9, + [4757] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_RPAREN, + STATE(485), 1, + sym_string_literal, + STATE(809), 1, + sym__expression, + STATE(1384), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [4852] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(894), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, + sym_string_literal, + STATE(608), 1, + sym_initializer_list, + STATE(654), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(603), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [4947] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1661), 1, + anon_sym_RPAREN, + STATE(485), 1, + sym_string_literal, + STATE(804), 1, + sym__expression, + STATE(1432), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [5042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, - anon_sym_STAR, - ACTIONS(1540), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1542), 1, - anon_sym_EQ, - ACTIONS(1546), 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(1532), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1663), 1, + anon_sym_SEMI, + STATE(485), 1, + sym_string_literal, + STATE(802), 1, + sym__expression, + STATE(1504), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1526), 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, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1524), 15, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3961] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1601), 1, - aux_sym_preproc_def_token1, - ACTIONS(1603), 1, - aux_sym_preproc_if_token1, - ACTIONS(1605), 1, - aux_sym_preproc_if_token2, - ACTIONS(1609), 1, - sym_preproc_directive, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, - sym__declaration_specifiers, - ACTIONS(1607), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(432), 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, - [4061] = 22, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [5137] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -51979,16 +53159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1611), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1665), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(728), 1, + STATE(825), 1, sym__expression, - STATE(1258), 1, - sym_compound_statement, + STATE(1379), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52020,13 +53200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52040,167 +53220,11 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4159] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1554), 1, - sym_identifier, - ACTIONS(1574), 1, - anon_sym___attribute__, - ACTIONS(1577), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1580), 1, - anon_sym___declspec, - ACTIONS(1589), 1, - sym_primitive_type, - ACTIONS(1592), 1, - anon_sym_enum, - ACTIONS(1595), 1, - anon_sym_struct, - ACTIONS(1598), 1, - anon_sym_union, - ACTIONS(1613), 1, - aux_sym_preproc_def_token1, - ACTIONS(1616), 1, - aux_sym_preproc_if_token1, - ACTIONS(1622), 1, - sym_preproc_directive, - ACTIONS(1625), 1, - anon_sym_RBRACE, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, - sym__declaration_specifiers, - ACTIONS(1619), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1586), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1571), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1583), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(427), 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, - [4259] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1627), 1, - aux_sym_preproc_def_token1, - ACTIONS(1629), 1, - aux_sym_preproc_if_token1, - ACTIONS(1633), 1, - sym_preproc_directive, - ACTIONS(1635), 1, - anon_sym_RBRACE, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, - sym__declaration_specifiers, - ACTIONS(1631), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(427), 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, - [4359] = 22, + [5232] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -52209,16 +53233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1637), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1667), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(716), 1, + STATE(779), 1, sym__expression, - STATE(1243), 1, - sym_compound_statement, + STATE(1459), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52250,13 +53274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52270,84 +53294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4457] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1601), 1, - aux_sym_preproc_def_token1, - ACTIONS(1603), 1, - aux_sym_preproc_if_token1, - ACTIONS(1609), 1, - sym_preproc_directive, - ACTIONS(1639), 1, - aux_sym_preproc_if_token2, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, - sym__declaration_specifiers, - ACTIONS(1607), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(425), 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, - [4557] = 23, + [5327] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -52364,37 +53311,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1420), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1422), 1, + anon_sym_RPAREN, + ACTIONS(1430), 1, + anon_sym_LBRACK, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1627), 1, - aux_sym_preproc_def_token1, - ACTIONS(1629), 1, - aux_sym_preproc_if_token1, - ACTIONS(1633), 1, - sym_preproc_directive, - ACTIONS(1641), 1, - anon_sym_RBRACE, - STATE(733), 1, + ACTIONS(1669), 1, + anon_sym_LPAREN2, + ACTIONS(1671), 1, + anon_sym_STAR, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, + STATE(949), 1, sym__declaration_specifiers, - ACTIONS(1631), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(1178), 1, + sym_parameter_list, + STATE(1206), 1, + sym__abstract_declarator, + STATE(1249), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -52407,84 +53365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(428), 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, - [4657] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1554), 1, - sym_identifier, - ACTIONS(1563), 1, - aux_sym_preproc_if_token2, - ACTIONS(1574), 1, - anon_sym___attribute__, - ACTIONS(1577), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1580), 1, - anon_sym___declspec, - ACTIONS(1589), 1, - sym_primitive_type, - ACTIONS(1592), 1, - anon_sym_enum, - ACTIONS(1595), 1, - anon_sym_struct, - ACTIONS(1598), 1, - anon_sym_union, - ACTIONS(1643), 1, - aux_sym_preproc_def_token1, - ACTIONS(1646), 1, - aux_sym_preproc_if_token1, - ACTIONS(1652), 1, - sym_preproc_directive, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, - sym__declaration_specifiers, - ACTIONS(1649), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1586), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1571), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1583), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -52492,16 +53373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(432), 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, - [4757] = 21, + [5432] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52514,13 +53386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1673), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(807), 1, + STATE(805), 1, sym__expression, STATE(1506), 1, sym_comma_expression, @@ -52555,13 +53427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52575,7 +53447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4852] = 21, + [5527] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52588,15 +53460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1675), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(814), 1, + STATE(772), 1, sym__expression, - STATE(1364), 1, + STATE(1415), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52629,13 +53501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52649,192 +53521,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4947] = 21, + [5622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1384), 1, sym_identifier, - STATE(499), 1, - sym_string_literal, - STATE(774), 1, - sym__expression, - STATE(1301), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [5042] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1659), 1, - anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(797), 1, + STATE(608), 1, + sym_initializer_list, + STATE(654), 1, sym__expression, - STATE(1427), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [5137] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1661), 1, - anon_sym_RPAREN, - STATE(499), 1, - sym_string_literal, - STATE(799), 1, - sym__expression, - STATE(1428), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -52851,13 +53575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52871,7 +53595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5232] = 21, + [5717] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52884,16 +53608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1663), 1, - anon_sym_SEMI, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(801), 1, + STATE(608), 1, + sym_initializer_list, + STATE(624), 1, sym__expression, - STATE(1500), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52925,13 +53649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52945,7 +53669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5327] = 21, + [5812] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52958,15 +53682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1665), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1677), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(776), 1, + STATE(794), 1, sym__expression, - STATE(1457), 1, + STATE(1485), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52999,13 +53723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53019,7 +53743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5422] = 21, + [5907] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53032,15 +53756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1667), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1679), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(810), 1, + STATE(806), 1, sym__expression, - STATE(1391), 1, + STATE(1509), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53073,13 +53797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53093,7 +53817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5517] = 21, + [6002] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53106,16 +53830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1669), 1, - anon_sym_SEMI, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(796), 1, + STATE(808), 1, sym__expression, - STATE(1483), 1, - sym_comma_expression, + STATE(1341), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53147,13 +53871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53167,7 +53891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5612] = 21, + [6097] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53180,15 +53904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1671), 1, + ACTIONS(1681), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(773), 1, + STATE(824), 1, sym__expression, - STATE(1435), 1, + STATE(1518), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53221,13 +53945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53241,7 +53965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5707] = 21, + [6192] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53254,16 +53978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(610), 1, - sym_initializer_list, - STATE(611), 1, + STATE(793), 1, sym__expression, + STATE(1482), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53295,13 +54019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53315,7 +54039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5802] = 21, + [6287] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53328,15 +54052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1673), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1685), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(766), 1, + STATE(801), 1, sym__expression, - STATE(1502), 1, + STATE(1431), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53369,87 +54093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [5897] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, - sym_string_literal, - STATE(610), 1, - sym_initializer_list, - STATE(655), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53463,7 +54113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5992] = 21, + [6382] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53476,15 +54126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1675), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1687), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(803), 1, + STATE(819), 1, sym__expression, - STATE(1394), 1, + STATE(1526), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53517,13 +54167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53537,7 +54187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6087] = 21, + [6477] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53550,15 +54200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(804), 1, + STATE(790), 1, sym__expression, - STATE(1542), 1, + STATE(1481), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53591,13 +54241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53611,7 +54261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6182] = 21, + [6572] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53624,16 +54274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1679), 1, - anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(781), 1, + STATE(826), 1, sym__expression, - STATE(1419), 1, - sym_comma_expression, + STATE(1361), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53665,13 +54315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53685,7 +54335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6277] = 21, + [6667] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53698,15 +54348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1681), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1691), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(811), 1, + STATE(817), 1, sym__expression, - STATE(1389), 1, + STATE(1531), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53739,13 +54389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53759,7 +54409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6372] = 21, + [6762] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53772,15 +54422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1693), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(785), 1, + STATE(798), 1, sym__expression, - STATE(1476), 1, + STATE(1421), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53813,13 +54463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53833,7 +54483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6467] = 21, + [6857] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53846,15 +54496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1685), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1695), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(805), 1, + STATE(818), 1, sym__expression, - STATE(1550), 1, + STATE(1528), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53887,13 +54537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53907,7 +54557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6562] = 21, + [6952] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53920,15 +54570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1687), 1, + ACTIONS(1697), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(806), 1, + STATE(814), 1, sym__expression, - STATE(1554), 1, + STATE(1558), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53961,13 +54611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53981,7 +54631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6657] = 21, + [7047] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53994,15 +54644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1689), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1699), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(808), 1, + STATE(807), 1, sym__expression, - STATE(1556), 1, + STATE(1476), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54035,13 +54685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54055,7 +54705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6752] = 21, + [7142] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54068,15 +54718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(767), 1, + STATE(785), 1, sym__expression, - STATE(1411), 1, + STATE(1426), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54109,13 +54759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54129,7 +54779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6847] = 21, + [7237] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54142,15 +54792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1703), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(768), 1, + STATE(810), 1, sym__expression, - STATE(1408), 1, + STATE(1544), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54183,13 +54833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54203,7 +54853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6942] = 21, + [7332] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54216,15 +54866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1695), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1705), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(820), 1, + STATE(784), 1, sym__expression, - STATE(1383), 1, + STATE(1465), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54257,13 +54907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54277,7 +54927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7037] = 21, + [7427] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54290,15 +54940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1707), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(816), 1, + STATE(780), 1, sym__expression, - STATE(1569), 1, + STATE(1461), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54331,13 +54981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54351,7 +55001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7132] = 21, + [7522] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54364,15 +55014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1709), 1, anon_sym_SEMI, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(809), 1, + STATE(775), 1, sym__expression, - STATE(1505), 1, + STATE(1443), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54405,13 +55055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54425,7 +55075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7227] = 21, + [7617] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54438,15 +55088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1701), 1, + ACTIONS(1711), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(769), 1, + STATE(771), 1, sym__expression, - STATE(1437), 1, + STATE(1422), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54479,13 +55129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54499,7 +55149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7322] = 21, + [7712] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54512,15 +55162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1703), 1, + ACTIONS(1713), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(770), 1, + STATE(812), 1, sym__expression, - STATE(1405), 1, + STATE(1550), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54553,13 +55203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54573,7 +55223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7417] = 21, + [7807] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54586,15 +55236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1705), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1715), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(817), 1, + STATE(800), 1, sym__expression, - STATE(1387), 1, + STATE(1480), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54627,13 +55277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54647,7 +55297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7512] = 21, + [7902] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54660,15 +55310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1707), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1717), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(802), 1, + STATE(774), 1, sym__expression, - STATE(1472), 1, + STATE(1411), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54701,13 +55351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54721,7 +55371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7607] = 21, + [7997] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54734,15 +55384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1709), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1719), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(779), 1, + STATE(813), 1, sym__expression, - STATE(1366), 1, + STATE(1556), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54775,13 +55425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54795,7 +55445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7702] = 21, + [8092] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54808,15 +55458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1711), 1, - anon_sym_RPAREN, - STATE(499), 1, + ACTIONS(1721), 1, + anon_sym_SEMI, + STATE(485), 1, sym_string_literal, - STATE(788), 1, + STATE(769), 1, sym__expression, - STATE(1477), 1, + STATE(1377), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54849,13 +55499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54869,7 +55519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7797] = 21, + [8187] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54882,15 +55532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1713), 1, + ACTIONS(1723), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(791), 1, + STATE(820), 1, sym__expression, - STATE(1478), 1, + STATE(1387), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54923,13 +55573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54943,7 +55593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7892] = 21, + [8282] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54956,16 +55606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1725), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(818), 1, + STATE(816), 1, sym__expression, - STATE(1358), 1, - sym_initializer_list, + STATE(1368), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54997,13 +55647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55017,7 +55667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7987] = 21, + [8377] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55030,16 +55680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(800), 1, + STATE(821), 1, sym__expression, - STATE(1355), 1, - sym_initializer_list, + STATE(1393), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -55071,13 +55721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55091,118 +55741,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8082] = 21, + [8472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(912), 1, + ACTIONS(81), 1, anon_sym_sizeof, - STATE(499), 1, - sym_string_literal, - STATE(610), 1, - sym_initializer_list, - STATE(611), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [8177] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(610), 1, - sym_initializer_list, - STATE(655), 1, + STATE(773), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + STATE(1442), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -55219,13 +55795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55239,7 +55815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8272] = 21, + [8567] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55252,15 +55828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1715), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(775), 1, + STATE(823), 1, sym__expression, - STATE(1455), 1, + STATE(1395), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55293,13 +55869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55313,86 +55889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8367] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1424), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1426), 1, - anon_sym_RPAREN, - ACTIONS(1434), 1, - anon_sym_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1717), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - anon_sym_STAR, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(982), 1, - sym__declaration_specifiers, - STATE(1176), 1, - sym_parameter_list, - STATE(1198), 1, - sym__abstract_declarator, - STATE(1246), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, - [8472] = 21, + [8662] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55405,15 +55902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1721), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1733), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(780), 1, + STATE(822), 1, sym__expression, - STATE(1461), 1, + STATE(1391), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55446,13 +55943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55466,7 +55963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8567] = 21, + [8757] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55479,15 +55976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1723), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(765), 1, + STATE(815), 1, sym__expression, - STATE(1373), 1, + STATE(1573), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55520,13 +56017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55540,7 +56037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8662] = 21, + [8852] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55553,13 +56050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1725), 1, + ACTIONS(1737), 1, anon_sym_SEMI, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(823), 1, + STATE(783), 1, sym__expression, STATE(1375), 1, sym_comma_expression, @@ -55594,13 +56091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55614,7 +56111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8757] = 21, + [8947] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55627,15 +56124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1727), 1, + ACTIONS(1739), 1, anon_sym_RPAREN, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(821), 1, + STATE(811), 1, sym__expression, - STATE(1380), 1, + STATE(1398), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55668,13 +56165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55688,7 +56185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8852] = 21, + [9042] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55701,15 +56198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1729), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1741), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_string_literal, - STATE(812), 1, + STATE(777), 1, sym__expression, - STATE(1527), 1, + STATE(1441), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55742,13 +56239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55762,44 +56259,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8947] = 21, + [9137] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1731), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(771), 1, + STATE(608), 1, + sym_initializer_list, + STATE(624), 1, sym__expression, - STATE(1438), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -55816,13 +56313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55836,11 +56333,13 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9042] = 21, + [9232] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -55849,16 +56348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1733), 1, - anon_sym_SEMI, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(813), 1, + STATE(778), 1, sym__expression, - STATE(1524), 1, - sym_comma_expression, + STATE(1305), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -55890,13 +56387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55910,7 +56407,65 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9137] = 21, + [9327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, + sym_identifier, + STATE(497), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1536), 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(1530), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [9391] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55923,16 +56478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1735), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1745), 1, + anon_sym_COLON, + STATE(485), 1, sym_string_literal, - STATE(795), 1, + STATE(870), 1, sym__expression, - STATE(1417), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -55964,13 +56517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55984,44 +56537,42 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9232] = 21, + [9483] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1737), 1, - anon_sym_SEMI, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1747), 1, + anon_sym_RBRACK, + STATE(485), 1, sym_string_literal, - STATE(819), 1, + STATE(661), 1, sym__expression, - STATE(1522), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -56038,13 +56589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56058,7 +56609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9327] = 20, + [9575] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56069,29 +56620,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1739), 1, + ACTIONS(1749), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -56110,13 +56661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56130,42 +56681,42 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9419] = 20, + [9667] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - ACTIONS(1741), 1, - anon_sym_RBRACK, - STATE(499), 1, + ACTIONS(1751), 1, + anon_sym_COLON, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(862), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -56182,13 +56733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56202,7 +56753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9511] = 20, + [9759] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56215,14 +56766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1743), 1, - anon_sym_COLON, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(863), 1, + STATE(770), 1, sym__expression, + STATE(1458), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56254,13 +56805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56274,7 +56825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9603] = 20, + [9851] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56285,29 +56836,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1745), 1, + ACTIONS(1753), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -56326,13 +56877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56346,7 +56897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9695] = 20, + [9943] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56359,85 +56910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1747), 1, - anon_sym_COLON, - STATE(499), 1, - sym_string_literal, - STATE(857), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [9787] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(783), 1, + STATE(786), 1, sym__expression, - STATE(1462), 1, + STATE(1466), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56470,13 +56949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56490,7 +56969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9879] = 20, + [10035] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56501,29 +56980,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1749), 1, + ACTIONS(1755), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -56542,13 +57021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56562,7 +57041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9971] = 20, + [10127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56575,14 +57054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1757), 1, + anon_sym_COLON, + STATE(485), 1, sym_string_literal, - STATE(815), 1, + STATE(833), 1, sym__expression, - STATE(1454), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56614,13 +57093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56634,114 +57113,42 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10063] = 20, + [10219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1759), 1, + anon_sym_RBRACK, + STATE(485), 1, sym_string_literal, - STATE(714), 1, + STATE(661), 1, sym__expression, - STATE(1327), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [10155] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_COLON, - STATE(499), 1, - sym_string_literal, - STATE(827), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -56758,13 +57165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56778,7 +57185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10247] = 20, + [10311] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56789,29 +57196,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1753), 1, + ACTIONS(1761), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -56830,13 +57237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56850,12 +57257,12 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10339] = 6, + [10403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(498), 2, + STATE(502), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(93), 5, @@ -56864,7 +57271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1759), 13, + ACTIONS(1767), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -56878,7 +57285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1757), 29, + ACTIONS(1765), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56908,79 +57315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [10403] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - ACTIONS(1761), 1, - anon_sym_RBRACK, - STATE(499), 1, - sym_string_literal, - STATE(650), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [10495] = 20, + [10467] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56991,29 +57326,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1763), 1, + ACTIONS(1769), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -57032,13 +57367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57052,7 +57387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10587] = 20, + [10559] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57063,29 +57398,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1765), 1, + ACTIONS(1771), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -57104,13 +57439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57124,42 +57459,42 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10679] = 20, + [10651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1767), 1, - anon_sym_COLON, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1773), 1, + anon_sym_RBRACK, + STATE(485), 1, sym_string_literal, - STATE(830), 1, + STATE(661), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -57176,13 +57511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57196,42 +57531,42 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10771] = 20, + [10743] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - ACTIONS(1769), 1, - anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(755), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + STATE(1331), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -57248,13 +57583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57268,21 +57603,21 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10863] = 6, + [10835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1775), 1, sym_identifier, - STATE(498), 2, + STATE(502), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1778), 5, + ACTIONS(1782), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1776), 13, + ACTIONS(1780), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -57296,7 +57631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1774), 29, + ACTIONS(1778), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57326,64 +57661,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [10927] = 6, + [10899] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1382), 1, sym_identifier, - STATE(492), 2, + ACTIONS(1785), 1, + anon_sym_COLON, + STATE(485), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1532), 13, + STATE(864), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1526), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, [10991] = 20, ACTIONS(3), 1, sym_comment, @@ -57395,29 +57744,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1783), 1, + ACTIONS(1787), 1, anon_sym_RBRACK, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(661), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -57436,13 +57785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57456,7 +57805,79 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11083] = 19, + [11083] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1789), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_ms_call_modifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1039), 1, + sym__declaration_specifiers, + STATE(158), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [11176] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57465,29 +57886,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(589), 1, + STATE(832), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -57506,13 +57927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57526,7 +57947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11172] = 19, + [11265] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57539,11 +57960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(684), 1, + STATE(787), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57576,13 +57997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57596,7 +58017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11261] = 19, + [11354] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57609,11 +58030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(849), 1, + STATE(830), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57646,13 +58067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57666,7 +58087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11350] = 19, + [11443] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57675,29 +58096,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + ACTIONS(1791), 1, + anon_sym_LPAREN2, + STATE(485), 1, sym_string_literal, - STATE(594), 1, + STATE(857), 1, sym__expression, - ACTIONS(25), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1388), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1394), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(669), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [11532] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1384), 1, + sym_identifier, + ACTIONS(1386), 1, + anon_sym_LPAREN2, + ACTIONS(1396), 1, + anon_sym_sizeof, + STATE(485), 1, + sym_string_literal, + STATE(665), 1, + sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -57716,13 +58207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57736,7 +58227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11439] = 19, + [11621] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57747,29 +58238,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(592), 1, + STATE(661), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -57786,13 +58277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57806,79 +58297,11 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11528] = 19, + [11710] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(499), 1, - sym_string_literal, - STATE(591), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [11617] = 19, - ACTIONS(3), 1, - sym_comment, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -57887,13 +58310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1785), 1, - anon_sym_LPAREN2, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(686), 1, + STATE(875), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57926,13 +58347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57946,7 +58367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11706] = 19, + [11799] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57955,29 +58376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(616), 1, + STATE(842), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -57996,13 +58417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58016,7 +58437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11795] = 19, + [11888] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58029,11 +58450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(784), 1, + STATE(682), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58066,13 +58487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58086,7 +58507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11884] = 19, + [11977] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58095,99 +58516,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(627), 1, + STATE(648), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [11973] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(499), 1, - sym_string_literal, - STATE(598), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58206,13 +58557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58226,7 +58577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12062] = 19, + [12066] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58237,99 +58588,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(620), 1, + STATE(653), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(613), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [12151] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(499), 1, - sym_string_literal, - STATE(612), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -58346,13 +58627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58366,7 +58647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12240] = 19, + [12155] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58381,9 +58662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(602), 1, + STATE(633), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -58416,13 +58697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58436,7 +58717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12329] = 19, + [12244] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58445,29 +58726,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(595), 1, + STATE(840), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58486,13 +58767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58506,7 +58787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12418] = 19, + [12333] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58515,29 +58796,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(623), 1, + STATE(843), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58556,13 +58837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58576,7 +58857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12507] = 19, + [12422] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58585,29 +58866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(840), 1, + STATE(653), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58626,13 +58907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58646,40 +58927,112 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12596] = 19, + [12511] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1793), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym_ms_call_modifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1037), 1, + sym__declaration_specifiers, + STATE(355), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [12604] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(847), 1, + STATE(852), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -58696,13 +59049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58716,40 +59069,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12685] = 19, + [12693] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1384), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1386), 1, + anon_sym_LPAREN2, + ACTIONS(1396), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(697), 1, + STATE(845), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -58766,13 +59119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58786,40 +59139,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12774] = 19, + [12782] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(646), 1, + STATE(853), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -58836,13 +59189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58856,7 +59209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12863] = 19, + [12871] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58865,29 +59218,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(854), 1, + STATE(851), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58906,13 +59259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58926,7 +59279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12952] = 19, + [12960] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58935,29 +59288,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(633), 1, + STATE(828), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -58976,13 +59329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58996,7 +59349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13041] = 19, + [13049] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59005,29 +59358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(912), 1, - anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - STATE(499), 1, + ACTIONS(1396), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(615), 1, + STATE(860), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -59046,13 +59399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59066,7 +59419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13130] = 19, + [13138] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59075,31 +59428,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(654), 1, + STATE(829), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1394), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -59116,13 +59469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59136,79 +59489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13219] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1789), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_ms_call_modifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, - sym__declaration_specifiers, - STATE(177), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, - [13312] = 19, + [13227] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59217,29 +59498,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(835), 1, + STATE(873), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -59258,13 +59539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59278,40 +59559,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13401] = 19, + [13316] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(912), 1, + anon_sym_sizeof, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + STATE(485), 1, sym_string_literal, - STATE(833), 1, + STATE(628), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -59328,13 +59609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59348,7 +59629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13490] = 19, + [13405] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59357,31 +59638,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(657), 1, + STATE(874), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(669), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [13494] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1384), 1, + sym_identifier, + ACTIONS(1386), 1, + anon_sym_LPAREN2, + ACTIONS(1396), 1, + anon_sym_sizeof, + STATE(485), 1, + sym_string_literal, + STATE(872), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(1388), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1394), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -59398,13 +59749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59418,7 +59769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13579] = 19, + [13583] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59433,9 +59784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(630), 1, + STATE(634), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -59468,13 +59819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59488,40 +59839,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13668] = 19, + [13672] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(848), 1, + STATE(636), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -59538,13 +59889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59558,40 +59909,112 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13757] = 19, + [13761] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(1797), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_ms_call_modifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1043), 1, + sym__declaration_specifiers, + STATE(340), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [13854] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(643), 1, + STATE(636), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -59608,13 +60031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59628,7 +60051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13846] = 19, + [13943] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59637,29 +60060,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(859), 1, + STATE(620), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -59678,13 +60101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59698,40 +60121,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13935] = 19, + [14032] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(861), 1, + STATE(615), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -59748,13 +60171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59768,7 +60191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14024] = 21, + [14121] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -59785,19 +60208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(1791), 1, + ACTIONS(1799), 1, anon_sym_LBRACE, - STATE(644), 1, + STATE(658), 1, sym_ms_call_modifier, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1049), 1, sym__declaration_specifiers, - STATE(315), 3, + STATE(359), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -59812,7 +60235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -59832,7 +60255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -59840,7 +60263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [14117] = 19, + [14214] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59849,29 +60272,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(651), 1, + STATE(625), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -59890,13 +60313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59910,7 +60333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14206] = 19, + [14303] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59919,29 +60342,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(661), 1, + STATE(596), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -59960,13 +60383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59980,40 +60403,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14295] = 19, + [14392] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1384), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1386), 1, + anon_sym_LPAREN2, + ACTIONS(1396), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(682), 1, + STATE(846), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1390), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -60030,13 +60453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60050,40 +60473,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14384] = 19, + [14481] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(871), 1, + STATE(621), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -60100,13 +60523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60120,7 +60543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14473] = 19, + [14570] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60131,29 +60554,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(650), 1, + STATE(626), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -60170,13 +60593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60190,7 +60613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14562] = 19, + [14659] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60199,29 +60622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(660), 1, + STATE(629), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -60240,13 +60663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60260,7 +60683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14651] = 19, + [14748] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60269,29 +60692,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(841), 1, + STATE(617), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -60310,13 +60733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60330,7 +60753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14740] = 19, + [14837] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60339,29 +60762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(1386), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(1396), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(837), 1, + STATE(831), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1390), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1394), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -60380,13 +60803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60400,7 +60823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14829] = 19, + [14926] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60411,27 +60834,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(663), 1, + STATE(657), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -60450,13 +60873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60470,112 +60893,110 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14918] = 21, + [15015] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1793), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_ms_call_modifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1031), 1, - sym__declaration_specifiers, - STATE(314), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, - [15011] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1054), 1, anon_sym_sizeof, + STATE(485), 1, + sym_string_literal, + STATE(659), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(603), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [15104] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(700), 1, + STATE(594), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -60592,13 +61013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60612,7 +61033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15100] = 19, + [15193] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60623,27 +61044,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(660), 1, + STATE(662), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -60662,13 +61083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60682,7 +61103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15189] = 19, + [15282] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60693,29 +61114,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(653), 1, + STATE(639), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -60732,13 +61153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60752,40 +61173,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15278] = 19, + [15371] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(898), 1, + anon_sym_LPAREN2, + ACTIONS(912), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(724), 1, + STATE(638), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(900), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(902), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(910), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -60802,13 +61223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60822,7 +61243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15367] = 19, + [15460] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60833,27 +61254,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(661), 1, + STATE(663), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -60872,13 +61293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60892,7 +61313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15456] = 19, + [15549] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60901,31 +61322,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1795), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - STATE(499), 1, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(846), 1, + STATE(664), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -60942,13 +61363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60962,7 +61383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15545] = 19, + [15638] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60973,27 +61394,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(642), 1, + STATE(668), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -61012,13 +61433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61032,110 +61453,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15634] = 19, + [15727] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(633), 1, + STATE(666), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(636), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(635), 13, - 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, - [15723] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - STATE(499), 1, - sym_string_literal, - STATE(623), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61152,13 +61503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61172,40 +61523,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15812] = 19, + [15816] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(792), 1, + STATE(652), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61222,13 +61573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61242,7 +61593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15901] = 19, + [15905] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61253,27 +61604,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(652), 1, + STATE(646), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -61292,13 +61643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61312,7 +61663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15990] = 19, + [15994] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61325,11 +61676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(862), 1, + STATE(836), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61362,13 +61713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61382,40 +61733,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16079] = 19, + [16083] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(787), 1, + STATE(651), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61432,13 +61783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61452,40 +61803,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16168] = 19, + [16172] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(843), 1, + STATE(660), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61502,13 +61853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61522,7 +61873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16257] = 19, + [16261] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61535,11 +61886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(693), 1, + STATE(791), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61572,13 +61923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61592,40 +61943,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16346] = 19, + [16350] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(894), 1, sym_identifier, - STATE(499), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(485), 1, sym_string_literal, - STATE(602), 1, + STATE(648), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61642,13 +61993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61662,7 +62013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16435] = 19, + [16439] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61675,11 +62026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(687), 1, + STATE(760), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61712,13 +62063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61732,7 +62083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16524] = 19, + [16528] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61745,11 +62096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(698), 1, + STATE(706), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61782,13 +62133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61802,7 +62153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16613] = 19, + [16617] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61815,11 +62166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(704), 1, + STATE(859), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61852,13 +62203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61872,7 +62223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16702] = 19, + [16706] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61885,11 +62236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(674), 1, + STATE(634), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61922,13 +62273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61942,40 +62293,110 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16791] = 19, + [16795] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + STATE(485), 1, + sym_string_literal, + STATE(697), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(640), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(606), 13, + 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, + [16884] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(894), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(824), 1, + STATE(665), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1392), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(95), 3, sym_true, sym_false, @@ -61992,13 +62413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62012,7 +62433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16880] = 19, + [16973] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62025,11 +62446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(702), 1, + STATE(693), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62062,13 +62483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62082,78 +62503,6 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16969] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(1797), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_ms_call_modifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1033), 1, - sym__declaration_specifiers, - STATE(346), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, [17062] = 19, ACTIONS(3), 1, sym_comment, @@ -62165,27 +62514,27 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(894), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(499), 1, + ACTIONS(1803), 1, + anon_sym_LPAREN2, + STATE(485), 1, sym_string_literal, - STATE(651), 1, + STATE(647), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(970), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(1392), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(95), 3, @@ -62204,13 +62553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62227,37 +62576,37 @@ static const uint16_t ts_small_parse_table[] = { [17151] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(662), 1, + STATE(796), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62274,13 +62623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62297,37 +62646,37 @@ static const uint16_t ts_small_parse_table[] = { [17240] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(656), 1, + STATE(594), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62344,13 +62693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62377,11 +62726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(694), 1, + STATE(866), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62414,13 +62763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62437,37 +62786,37 @@ static const uint16_t ts_small_parse_table[] = { [17418] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(842), 1, + STATE(699), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62484,13 +62833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62517,11 +62866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(677), 1, + STATE(701), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62554,13 +62903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(636), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62577,37 +62926,37 @@ static const uint16_t ts_small_parse_table[] = { [17596] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(826), 1, + STATE(703), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62624,13 +62973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62647,37 +62996,37 @@ static const uint16_t ts_small_parse_table[] = { [17685] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, - ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_number_literal, + ACTIONS(1382), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(839), 1, + STATE(704), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62694,13 +63043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62717,37 +63066,37 @@ static const uint16_t ts_small_parse_table[] = { [17774] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(868), 1, + STATE(705), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62764,13 +63113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62787,37 +63136,37 @@ static const uint16_t ts_small_parse_table[] = { [17863] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(631), 1, + STATE(711), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(95), 3, sym_true, sym_false, @@ -62834,13 +63183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62863,29 +63212,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, + ACTIONS(894), 1, sym_identifier, - ACTIONS(1382), 1, + ACTIONS(898), 1, anon_sym_LPAREN2, - ACTIONS(1392), 1, + ACTIONS(912), 1, anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(870), 1, + STATE(619), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1384), 2, + ACTIONS(900), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(902), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(910), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(95), 3, @@ -62904,13 +63253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(603), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62927,37 +63276,37 @@ static const uint16_t ts_small_parse_table[] = { [18041] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(978), 1, - anon_sym_sizeof, - ACTIONS(1799), 1, - anon_sym_LPAREN2, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(658), 1, + STATE(710), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -62974,13 +63323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62997,37 +63346,37 @@ static const uint16_t ts_small_parse_table[] = { [18130] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN2, - ACTIONS(978), 1, - anon_sym_sizeof, - STATE(499), 1, + STATE(485), 1, sym_string_literal, - STATE(645), 1, + STATE(707), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(972), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(976), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -63044,13 +63393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(613), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -63067,37 +63416,37 @@ static const uint16_t ts_small_parse_table[] = { [18219] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1380), 1, - sym_identifier, ACTIONS(1382), 1, - anon_sym_LPAREN2, - ACTIONS(1392), 1, - anon_sym_sizeof, - STATE(499), 1, + sym_identifier, + STATE(485), 1, sym_string_literal, - STATE(869), 1, + STATE(708), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1384), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1386), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1388), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1390), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, ACTIONS(95), 3, sym_true, sym_false, @@ -63114,13 +63463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(667), 5, + STATE(640), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 13, + STATE(606), 13, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -63137,7 +63486,7 @@ static const uint16_t ts_small_parse_table[] = { [18308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 14, + ACTIONS(1805), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63152,7 +63501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1803), 34, + ACTIONS(1807), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63190,7 +63539,7 @@ static const uint16_t ts_small_parse_table[] = { [18364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 14, + ACTIONS(1809), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63205,7 +63554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1807), 34, + ACTIONS(1811), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63243,23 +63592,23 @@ static const uint16_t ts_small_parse_table[] = { [18420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(1532), 1, anon_sym_LPAREN2, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1537), 2, + ACTIONS(1541), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(1540), 6, + ACTIONS(1544), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63270,7 +63619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 11, + ACTIONS(1536), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -63282,7 +63631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 12, + ACTIONS(1530), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63298,55 +63647,7 @@ static const uint16_t ts_small_parse_table[] = { [18484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 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(1809), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 21, + ACTIONS(1404), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -63368,7 +63669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1811), 22, + ACTIONS(1402), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -63391,10 +63692,10 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [18586] = 3, + [18535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 21, + ACTIONS(1815), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -63416,7 +63717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1394), 22, + ACTIONS(1813), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -63439,7 +63740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [18637] = 3, + [18586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1400), 21, @@ -63487,22 +63788,117 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [18688] = 8, + [18637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 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(1815), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 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(1817), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1817), 13, + ACTIONS(1825), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63516,7 +63912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1813), 22, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -63539,10 +63935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18748] = 3, + [18798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 13, + ACTIONS(1835), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63556,7 +63952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1825), 29, + ACTIONS(1833), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63567,9 +63963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63586,49 +63982,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18798] = 13, + [18848] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, + ACTIONS(1845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1841), 2, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1833), 3, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 4, + ACTIONS(1825), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1829), 20, + ACTIONS(1821), 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_RBRACE, anon_sym_COLON, @@ -63643,41 +64040,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18868] = 11, + [18920] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, + ACTIONS(1851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1853), 1, + anon_sym_AMP_AMP, + ACTIONS(1855), 1, + anon_sym_PIPE, + ACTIONS(1857), 1, + anon_sym_CARET, + ACTIONS(1859), 1, + anon_sym_AMP, + ACTIONS(1861), 1, + anon_sym_EQ, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1845), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1847), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1839), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1849), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [19002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 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(1863), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 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(1867), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 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, - ACTIONS(1833), 3, + anon_sym_EQ, + ACTIONS(1871), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1877), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 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(1829), 22, + ACTIONS(1875), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63686,6 +64273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63698,10 +64287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18934] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1881), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63715,7 +64308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1843), 29, + ACTIONS(1879), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63745,29 +64338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18984] = 10, + [19252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1536), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1833), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -63776,9 +64355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1829), 22, + ACTIONS(1530), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63787,6 +64367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63799,63 +64381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19048] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1833), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1835), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1829), 22, - 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_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, - [19110] = 3, + [19302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1885), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63869,7 +64402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1847), 29, + ACTIONS(1883), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63899,10 +64432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19160] = 3, + [19352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 13, + ACTIONS(1889), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63916,7 +64449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1851), 29, + ACTIONS(1887), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63946,70 +64479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19210] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1857), 1, - anon_sym_AMP, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1831), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1829), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [19286] = 3, + [19402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1536), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64023,7 +64496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1861), 29, + ACTIONS(1530), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64053,10 +64526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19336] = 3, + [19452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 13, + ACTIONS(1893), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64070,7 +64543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1865), 29, + ACTIONS(1891), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64100,10 +64573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19386] = 3, + [19502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 13, + ACTIONS(1897), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64117,7 +64590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1869), 29, + ACTIONS(1895), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64147,22 +64620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19436] = 8, + [19552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1835), 13, + ACTIONS(1901), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64176,9 +64637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1829), 22, + ACTIONS(1899), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64187,6 +64649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64199,10 +64663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19496] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 13, + ACTIONS(1905), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64216,7 +64684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1873), 29, + ACTIONS(1903), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64246,10 +64714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19546] = 3, + [19652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1909), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64263,7 +64731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1877), 29, + ACTIONS(1907), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64293,10 +64761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19596] = 3, + [19702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 13, + ACTIONS(1913), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64310,7 +64778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1881), 29, + ACTIONS(1911), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64340,73 +64808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19646] = 19, + [19752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1857), 1, - anon_sym_AMP, - ACTIONS(1887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, - anon_sym_EQ, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1831), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1885), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [19728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 13, + ACTIONS(1917), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64420,7 +64825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1895), 29, + ACTIONS(1915), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64450,10 +64855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19778] = 3, + [19802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 13, + ACTIONS(1921), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64467,7 +64872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1899), 29, + ACTIONS(1919), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64497,27 +64902,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19828] = 3, + [19852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 13, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1847), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1825), 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(1903), 29, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64526,8 +64945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64540,14 +64957,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, - [19878] = 3, + [19918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 13, + ACTIONS(1925), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64561,7 +64974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1907), 29, + ACTIONS(1923), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64591,103 +65004,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19928] = 8, + [19968] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1913), 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, + ACTIONS(1825), 1, anon_sym_EQ, - ACTIONS(1911), 22, - 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_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, - [19988] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_EQ, + ACTIONS(1853), 1, + anon_sym_AMP_AMP, ACTIONS(1855), 1, - anon_sym_CARET, + anon_sym_PIPE, ACTIONS(1857), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_AMP, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, + ACTIONS(1845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1841), 2, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1829), 17, + ACTIONS(1821), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -64705,10 +65066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20068] = 3, + [20048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 13, + ACTIONS(1929), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64722,7 +65083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1526), 29, + ACTIONS(1927), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64752,39 +65113,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20118] = 3, + [20098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1853), 1, + anon_sym_AMP_AMP, + ACTIONS(1855), 1, anon_sym_PIPE, + ACTIONS(1857), 1, anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_AMP, + ACTIONS(1933), 1, + anon_sym_EQ, + ACTIONS(1935), 1, + anon_sym_QMARK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1845), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1915), 29, + ACTIONS(1839), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1931), 15, 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_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -64795,43 +65177,38 @@ 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, - [20168] = 11, + [20182] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1833), 3, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1921), 6, + ACTIONS(1825), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1919), 22, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -64854,46 +65231,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20234] = 14, + [20246] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, + ACTIONS(1845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1841), 2, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1835), 4, + ACTIONS(1825), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(1829), 18, + ACTIONS(1839), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -64912,10 +65290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20306] = 3, + [20320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 13, + ACTIONS(1939), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64929,7 +65307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1923), 29, + ACTIONS(1937), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64959,10 +65337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20356] = 3, + [20370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 13, + ACTIONS(1943), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64976,7 +65354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1927), 29, + ACTIONS(1941), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65006,10 +65384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20406] = 3, + [20420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65023,10 +65413,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1931), 29, + ACTIONS(1945), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -65035,8 +65424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65049,57 +65436,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20456] = 17, + [20480] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_EQ, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1857), 1, - anon_sym_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, + ACTIONS(1845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1841), 2, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1829), 18, + ACTIONS(1825), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1821), 20, 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_RBRACE, anon_sym_COLON, @@ -65114,37 +65493,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20534] = 3, + [20550] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1857), 1, anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_AMP, + STATE(599), 1, + sym_argument_list, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1845), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1935), 29, + ACTIONS(1839), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65157,14 +65553,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, - [20584] = 3, + [20626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(1951), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65178,7 +65570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1939), 29, + ACTIONS(1949), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65189,9 +65581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65208,33 +65600,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20634] = 7, + [20676] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1823), 2, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1945), 13, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1847), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1955), 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(1943), 24, + ACTIONS(1953), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -65257,39 +65655,55 @@ 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, - [20692] = 3, + [20742] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1825), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1855), 1, anon_sym_PIPE, + ACTIONS(1857), 1, anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_AMP, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1845), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1947), 29, + ACTIONS(1839), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65302,14 +65716,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, - [20742] = 3, + [20820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 13, + ACTIONS(1959), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65323,7 +65733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1951), 29, + ACTIONS(1957), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65353,10 +65763,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20792] = 3, + [20870] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1420), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1422), 1, + anon_sym_RPAREN, + ACTIONS(1486), 1, + sym_identifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(949), 1, + sym__declaration_specifiers, + STATE(1249), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [20954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(1963), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65370,7 +65844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1955), 29, + ACTIONS(1961), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65381,9 +65855,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65400,55 +65874,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20842] = 15, + [21004] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, + ACTIONS(1851), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1853), 1, + anon_sym_AMP_AMP, + ACTIONS(1855), 1, + anon_sym_PIPE, ACTIONS(1857), 1, + anon_sym_CARET, + ACTIONS(1859), 1, anon_sym_AMP, + ACTIONS(1935), 1, + anon_sym_QMARK, + ACTIONS(1967), 1, + anon_sym_EQ, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, + ACTIONS(1841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1843), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, + ACTIONS(1845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1841), 2, + ACTIONS(1847), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1829), 18, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65459,10 +65938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20916] = 3, + [21088] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1961), 13, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65476,10 +65967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1959), 29, + ACTIONS(1969), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -65488,8 +65978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65502,14 +65990,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, - [20966] = 3, + [21148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(1975), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65523,7 +66007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1963), 29, + ACTIONS(1973), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65553,124 +66037,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21016] = 20, + [21198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1857), 1, - anon_sym_AMP, - ACTIONS(1887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1969), 1, - anon_sym_EQ, - ACTIONS(1971), 1, - anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, + ACTIONS(1979), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1967), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21100] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(1857), 1, anon_sym_AMP, - ACTIONS(1887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(1975), 1, - anon_sym_EQ, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1831), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1837), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1973), 15, + anon_sym_EQ, + ACTIONS(1977), 24, 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_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65681,10 +66086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21184] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [21256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 13, + ACTIONS(1983), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65698,7 +66105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1977), 29, + ACTIONS(1981), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65728,22 +66135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21234] = 8, + [21306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1983), 13, + ACTIONS(1987), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65757,7 +66164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1981), 22, + ACTIONS(1985), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -65780,79 +66187,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21294] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1424), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1426), 1, - anon_sym_RPAREN, - ACTIONS(1482), 1, - sym_identifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(982), 1, - sym__declaration_specifiers, - STATE(1246), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, - [21378] = 3, + [21366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1839), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1825), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -65861,10 +66217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1526), 29, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -65873,8 +66228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -65887,16 +66240,12 @@ 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, [21428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65907,7 +66256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65920,7 +66269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 18, + ACTIONS(1530), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65956,17 +66305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1424), 1, + ACTIONS(1420), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(982), 1, + STATE(949), 1, sym__declaration_specifiers, - STATE(1305), 2, + STATE(1310), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -65980,7 +66329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -65993,7 +66342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66004,11 +66353,11 @@ static const uint16_t ts_small_parse_table[] = { [21562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1548), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66019,7 +66368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66032,7 +66381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 15, + ACTIONS(1530), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -66051,11 +66400,11 @@ static const uint16_t ts_small_parse_table[] = { [21615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1544), 1, + ACTIONS(1548), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66066,7 +66415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66079,7 +66428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 15, + ACTIONS(1530), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -66098,11 +66447,11 @@ static const uint16_t ts_small_parse_table[] = { [21668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1552), 1, + ACTIONS(1554), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66113,7 +66462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66126,7 +66475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 15, + ACTIONS(1530), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -66145,11 +66494,11 @@ static const uint16_t ts_small_parse_table[] = { [21721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1546), 1, anon_sym_EQ, - ACTIONS(1550), 1, + ACTIONS(1552), 1, anon_sym_COLON, - ACTIONS(1546), 10, + ACTIONS(1550), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66160,7 +66509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1532), 12, + ACTIONS(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66173,7 +66522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 15, + ACTIONS(1530), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -66189,223 +66538,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21774] = 20, + [21774] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1969), 1, - anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1993), 1, - anon_sym_AMP_AMP, - ACTIONS(1995), 1, - anon_sym_PIPE, - ACTIONS(1997), 1, - anon_sym_CARET, - ACTIONS(1999), 1, - anon_sym_AMP, - ACTIONS(2009), 1, - anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2005), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1967), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21854] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - ACTIONS(1999), 1, + ACTIONS(1825), 8, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2005), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2007), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1835), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(1989), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1829), 14, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21924] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1066), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(669), 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, - [21998] = 17, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21834] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1995), 1, - anon_sym_PIPE, - ACTIONS(1997), 1, - anon_sym_CARET, - ACTIONS(1999), 1, - anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2005), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2007), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1829), 14, + ACTIONS(1955), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1953), 18, anon_sym_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, @@ -66418,50 +66639,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22072] = 16, + [21896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1997), 1, - anon_sym_CARET, - ACTIONS(1999), 1, - anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1987), 2, + ACTIONS(1979), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 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(2005), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2007), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1989), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1829), 14, + anon_sym_EQ, + ACTIONS(1977), 20, anon_sym_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, @@ -66474,52 +66684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22144] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(647), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2015), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(2011), 11, - 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, - sym_null, - sym_identifier, - ACTIONS(2013), 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, - [22194] = 17, + [21950] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -66536,13 +66703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1069), 1, + STATE(1071), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -66555,7 +66722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66568,7 +66735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66576,208 +66743,100 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [22268] = 17, + [22024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - sym_identifier, - STATE(733), 1, - sym__type_specifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1053), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + STATE(650), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2001), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 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, - [22342] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1817), 13, + ACTIONS(1997), 11, 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, + sym_null, + sym_identifier, + ACTIONS(1999), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1813), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22398] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1835), 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(1829), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22454] = 20, + 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, + [22074] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1975), 1, + ACTIONS(1933), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1991), 1, + ACTIONS(2004), 1, anon_sym_PIPE_PIPE, - ACTIONS(1993), 1, + ACTIONS(2006), 1, anon_sym_AMP_AMP, - ACTIONS(1995), 1, + ACTIONS(2008), 1, anon_sym_PIPE, - ACTIONS(1997), 1, + ACTIONS(2010), 1, anon_sym_CARET, - ACTIONS(1999), 1, + ACTIONS(2012), 1, anon_sym_AMP, - ACTIONS(2009), 1, + ACTIONS(2020), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2003), 2, + ACTIONS(2016), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2005), 2, + ACTIONS(2018), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1973), 11, + ACTIONS(1931), 11, anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66789,39 +66848,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22534] = 11, + [22154] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2007), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 6, + ACTIONS(1825), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(1829), 18, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -66840,76 +66899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22596] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2005), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1835), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1829), 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, - [22664] = 8, + [22216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1913), 13, + ACTIONS(1825), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66923,7 +66928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1911), 18, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -66942,29 +66947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22720] = 10, + [22272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1947), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1989), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -66973,7 +66976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1829), 18, + ACTIONS(1945), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -66992,47 +66995,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22780] = 13, + [22328] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1077), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [22402] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1861), 1, + anon_sym_EQ, + ACTIONS(1989), 1, anon_sym_LPAREN2, + ACTIONS(2004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2006), 1, + anon_sym_AMP_AMP, + ACTIONS(2008), 1, + anon_sym_PIPE, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2012), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2003), 2, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2016), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2005), 2, + ACTIONS(2018), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1829), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1849), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -67045,39 +67111,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22846] = 11, + [22480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1921), 6, + ACTIONS(1825), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1919), 18, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -67096,7 +67160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22908] = 17, + [22538] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -67113,13 +67177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(733), 1, + STATE(737), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1067), 1, + STATE(1076), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -67132,7 +67196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67145,7 +67209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(669), 7, + STATE(671), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67153,22 +67217,140 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [22982] = 8, + [22612] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2006), 1, + anon_sym_AMP_AMP, + ACTIONS(2008), 1, + anon_sym_PIPE, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2012), 1, + anon_sym_AMP, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1991), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2016), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2018), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 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, + [22688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1967), 1, + anon_sym_EQ, + ACTIONS(1989), 1, anon_sym_LPAREN2, + ACTIONS(2004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2006), 1, + anon_sym_AMP_AMP, + ACTIONS(2008), 1, + anon_sym_PIPE, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2012), 1, + anon_sym_AMP, + ACTIONS(2020), 1, + anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1983), 13, + ACTIONS(1991), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2016), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2018), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1965), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1987), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67182,7 +67364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1981), 18, + ACTIONS(1985), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -67201,39 +67383,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23038] = 7, + [22824] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1825), 1, + anon_sym_EQ, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, + ACTIONS(2008), 1, + anon_sym_PIPE, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2012), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1823), 2, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1945), 13, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2016), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2018), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(1821), 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, + [22898] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2010), 1, anon_sym_CARET, + ACTIONS(2012), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + STATE(599), 1, + sym_argument_list, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1991), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1943), 20, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2014), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2016), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2018), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -67246,54 +67496,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [23092] = 18, + [22970] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1993), 1, - anon_sym_AMP_AMP, - ACTIONS(1995), 1, - anon_sym_PIPE, - ACTIONS(1997), 1, - anon_sym_CARET, - ACTIONS(1999), 1, + ACTIONS(2012), 1, anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2003), 2, + ACTIONS(2016), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2005), 2, + ACTIONS(2018), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1825), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1829), 13, + ACTIONS(1821), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -67306,28 +67551,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23168] = 9, + [23040] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1989), 3, + ACTIONS(1971), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1835), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -67336,7 +67580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1829), 18, + ACTIONS(1969), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -67355,53 +67599,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23226] = 19, + [23096] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(1991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1993), 1, - anon_sym_AMP_AMP, - ACTIONS(1995), 1, - anon_sym_PIPE, - ACTIONS(1997), 1, - anon_sym_CARET, - ACTIONS(1999), 1, - anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 2, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2003), 2, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2016), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2005), 2, + ACTIONS(2018), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2007), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1989), 3, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1885), 12, + ACTIONS(1825), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1821), 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, @@ -67414,32 +67652,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23304] = 3, + [23162] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1486), 1, + sym_identifier, + STATE(737), 1, + sym__type_specifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1063), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(671), 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, + [23236] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2016), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2018), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1825), 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(1939), 24, - anon_sym_LPAREN2, + ACTIONS(1821), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -67452,14 +67763,23 @@ 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, - [23349] = 3, + [23304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 13, + ACTIONS(2022), 1, + anon_sym_EQ, + ACTIONS(2024), 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(1536), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67472,8 +67792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1927), 24, + ACTIONS(1530), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67484,37 +67803,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, - [23394] = 5, + [23353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 1, - anon_sym_EQ, - ACTIONS(2020), 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(1532), 12, + ACTIONS(1943), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67527,7 +67823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1526), 14, + anon_sym_EQ, + ACTIONS(1941), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67538,59 +67835,21 @@ 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, - [23443] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym___attribute__, - ACTIONS(2032), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2035), 1, - anon_sym___declspec, - ACTIONS(2024), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(2026), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2038), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(668), 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(2022), 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, - [23500] = 16, + [23398] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -67607,11 +67866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(749), 1, + STATE(733), 1, sym__type_specifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(47), 4, anon_sym_signed, @@ -67624,7 +67883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67637,7 +67896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(668), 7, + STATE(674), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67645,10 +67904,52 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23571] = 3, + [23469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(1835), 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(1833), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1963), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67662,7 +67963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1915), 24, + ACTIONS(1961), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67687,51 +67988,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [23559] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2033), 1, + anon_sym___attribute__, + ACTIONS(2036), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2039), 1, + anon_sym___declspec, + ACTIONS(2028), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(2030), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2042), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(674), 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(2026), 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, [23616] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1424), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1426), 1, anon_sym_STAR, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1057), 1, + STATE(1060), 1, sym__declarator, - STATE(1143), 1, + STATE(1150), 1, sym__abstract_declarator, - STATE(1176), 1, + STATE(1178), 1, sym_parameter_list, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - ACTIONS(2043), 2, + ACTIONS(2047), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(778), 2, + STATE(782), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(825), 2, + STATE(839), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1169), 4, + STATE(1170), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -67747,7 +68096,7 @@ static const uint16_t ts_small_parse_table[] = { [23692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 17, + ACTIONS(2055), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -67765,7 +68114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(2053), 19, + ACTIONS(2057), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -67788,7 +68137,7 @@ static const uint16_t ts_small_parse_table[] = { [23736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, + ACTIONS(2061), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -67797,7 +68146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2055), 24, + ACTIONS(2059), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67822,61 +68171,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23776] = 16, + [23776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2065), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2063), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [23815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2067), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [23854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2071), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [23893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2075), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [23932] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 9, + ACTIONS(1849), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [23841] = 3, + [24003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1078), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [24042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1122), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1120), 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [24081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2075), 30, + ACTIONS(1124), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67907,12 +68475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23880] = 3, + [24120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, + ACTIONS(1268), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 30, + ACTIONS(1266), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67943,56 +68511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23919] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1835), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1829), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23974] = 3, + [24159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1276), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1220), 30, + ACTIONS(1274), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68023,12 +68547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24013] = 3, + [24198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(2105), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 30, + ACTIONS(2103), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68059,12 +68583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24052] = 3, + [24237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(2109), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1286), 30, + ACTIONS(2107), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68095,12 +68619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24091] = 3, + [24276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2113), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2087), 30, + ACTIONS(2111), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68131,64 +68655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24130] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1885), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24201] = 3, + [24315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(2117), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1290), 30, + ACTIONS(2115), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68219,57 +68691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24240] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1835), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1829), 13, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24297] = 3, + [24354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(1330), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 30, + ACTIONS(1328), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68300,38 +68727,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24336] = 12, + [24393] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1921), 4, + ACTIONS(1825), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1919), 13, + ACTIONS(1821), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -68341,67 +68764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24393] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [24462] = 3, + [24446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2121), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2103), 30, + ACTIONS(2119), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68432,12 +68806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24501] = 3, + [24485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1302), 30, + ACTIONS(2123), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68468,18 +68842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24540] = 3, + [24524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 7, + ACTIONS(2057), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2107), 24, + anon_sym_COLON, + ACTIONS(2055), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68504,48 +68878,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24579] = 3, + [24563] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2111), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [24618] = 3, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1955), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1953), 13, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [24620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2129), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2115), 30, + ACTIONS(2127), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68576,102 +68959,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24657] = 10, + [24659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1835), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1829), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24710] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, + ACTIONS(2093), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2069), 2, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 11, + ACTIONS(1821), 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_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [24771] = 3, + [24728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2133), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2119), 30, + ACTIONS(2131), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68702,12 +69046,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24810] = 3, + [24767] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [24834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(2137), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1310), 30, + ACTIONS(2135), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68738,294 +69132,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24849] = 20, + [24873] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, + ACTIONS(2093), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1973), 5, + ACTIONS(1821), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [24922] = 17, + anon_sym_QMARK, + [24940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 8, + ACTIONS(1821), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [24989] = 3, + [25005] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1364), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [25028] = 20, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + STATE(599), 1, + sym_argument_list, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [25068] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1967), 5, + ACTIONS(1931), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [25101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2125), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [25140] = 15, + [25141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 9, + ACTIONS(1965), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [25214] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1825), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1821), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [25203] = 3, + [25269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 7, + ACTIONS(2143), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2051), 24, + anon_sym_LBRACE, + ACTIONS(2141), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -69050,145 +69465,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25242] = 17, + [25308] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2097), 1, - anon_sym_CARET, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1825), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1821), 13, + 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(2069), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [25365] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + STATE(599), 1, + sym_argument_list, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 8, + ACTIONS(1821), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [25309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2129), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [25348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2133), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [25387] = 3, + [25426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(1400), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2137), 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, + ACTIONS(1398), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -69208,7 +69592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25426] = 3, + [25464] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1807), 2, @@ -69243,52 +69627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 24, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, [25502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 6, + ACTIONS(1404), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2141), 24, + ACTIONS(1402), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -69316,10 +69665,10 @@ static const uint16_t ts_small_parse_table[] = { [25540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1801), 28, + ACTIONS(1809), 28, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -69351,14 +69700,14 @@ static const uint16_t ts_small_parse_table[] = { [25578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 6, + ACTIONS(2147), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 24, + ACTIONS(2145), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -69386,12 +69735,12 @@ static const uint16_t ts_small_parse_table[] = { [25616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2117), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2103), 28, + anon_sym_RBRACE, + ACTIONS(2115), 27, aux_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, @@ -69417,209 +69766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25653] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2147), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [25726] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2149), 1, - anon_sym_COMMA, - ACTIONS(2151), 1, - anon_sym_RBRACE, - STATE(599), 1, - sym_argument_list, - STATE(1295), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25801] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2153), 1, - anon_sym_COMMA, - ACTIONS(2155), 1, - anon_sym_RPAREN, - STATE(599), 1, - sym_argument_list, - STATE(1212), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25876] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_LBRACK_LBRACK, - STATE(567), 1, - sym_string_literal, - ACTIONS(2157), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2141), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [25917] = 3, + [25653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, + ACTIONS(1080), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 28, + anon_sym_RBRACE, + ACTIONS(1078), 27, aux_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, @@ -69645,15 +69800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25954] = 3, + [25690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2109), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2103), 27, + ACTIONS(2107), 28, aux_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, @@ -69679,12 +69834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25991] = 3, + [25727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, + ACTIONS(2065), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2075), 28, + ACTIONS(2063), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -69713,12 +69868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26028] = 3, + [25764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2113), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2119), 28, + ACTIONS(2111), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -69747,12 +69902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26065] = 3, + [25801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2117), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2133), 28, + ACTIONS(2115), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -69781,12 +69936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26102] = 3, + [25838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2105), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2137), 28, + ACTIONS(2103), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -69815,65 +69970,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26139] = 22, + [25875] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2159), 1, + ACTIONS(2149), 1, anon_sym_COMMA, - ACTIONS(2161), 1, - anon_sym_RPAREN, + ACTIONS(2151), 1, + anon_sym_RBRACE, STATE(599), 1, sym_argument_list, - STATE(1237), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(1821), 2, + STATE(1276), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26214] = 3, + [25950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(2121), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1290), 28, + ACTIONS(2119), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -69902,135 +70057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2115), 27, - 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [26288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_LBRACK_LBRACK, - STATE(525), 1, - sym_string_literal, - ACTIONS(2157), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2141), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [26329] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2153), 1, - anon_sym_COMMA, - ACTIONS(2163), 1, - anon_sym_RPAREN, - STATE(599), 1, - sym_argument_list, - STATE(1215), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26404] = 3, + [25987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2129), 28, + ACTIONS(2123), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -70059,15 +70091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26441] = 3, + [26024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(2069), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1286), 27, + ACTIONS(2067), 28, aux_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, @@ -70093,15 +70125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26478] = 3, + [26061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 2, + ACTIONS(2129), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2137), 27, + ACTIONS(2127), 28, aux_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, @@ -70127,7 +70159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26515] = 9, + [26098] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -70136,7 +70168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2165), 3, + ACTIONS(2153), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -70146,7 +70178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2167), 5, + ACTIONS(2155), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70159,7 +70191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(668), 7, + STATE(674), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -70167,47 +70199,109 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [26564] = 9, + [26147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2137), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2135), 28, + aux_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__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(886), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [26184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2169), 3, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(2067), 27, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, - ACTIONS(43), 5, + [26221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1328), 27, + 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_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2171), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(732), 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, - [26613] = 9, + 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, + [26258] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -70216,7 +70310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2173), 3, + ACTIONS(2157), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -70226,7 +70320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2175), 5, + ACTIONS(2159), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70239,7 +70333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(668), 7, + STATE(743), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -70247,13 +70341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [26662] = 3, + [26307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 2, + ACTIONS(1276), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1290), 27, + ACTIONS(1274), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70281,13 +70375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26699] = 3, + [26344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 2, + ACTIONS(1268), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2099), 27, + ACTIONS(1266), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70315,21 +70409,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26736] = 3, + [26381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 2, + STATE(736), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2165), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2163), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2087), 27, - 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(2161), 17, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -70340,56 +70443,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, 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, - [26773] = 3, + [26422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2125), 27, - 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(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2168), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + ACTIONS(2170), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, 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, - [26810] = 3, + STATE(729), 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, + [26471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 2, + ACTIONS(2133), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2133), 27, + ACTIONS(2131), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70417,13 +70519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26847] = 3, + [26508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 2, + ACTIONS(1126), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2119), 27, + ACTIONS(1124), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70451,13 +70553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26884] = 3, + [26545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(1122), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2083), 27, + ACTIONS(1120), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70485,12 +70587,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26921] = 3, + [26582] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2172), 1, + anon_sym_COMMA, + ACTIONS(2174), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + STATE(1216), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2087), 28, + ACTIONS(2075), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -70519,12 +70674,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26958] = 3, + [26694] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2176), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2178), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(674), 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, + [26743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2073), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 28, + ACTIONS(2071), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -70553,18 +70748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26995] = 3, + [26780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2115), 28, - aux_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(535), 1, + sym_string_literal, + ACTIONS(2180), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2145), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -70587,13 +70784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27032] = 3, + [26821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 2, + ACTIONS(2073), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2075), 27, + ACTIONS(2071), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70621,13 +70818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27069] = 3, + [26858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, + ACTIONS(2077), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1310), 27, + ACTIONS(2075), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70655,15 +70852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27106] = 3, + [26895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(2133), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1302), 27, + ACTIONS(2131), 28, aux_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, @@ -70689,15 +70886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27143] = 3, + [26932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, + ACTIONS(2109), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2111), 28, + anon_sym_RBRACE, + ACTIONS(2107), 27, aux_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, @@ -70723,53 +70920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27180] = 9, + [26969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2177), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2179), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(734), 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, - [27229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 2, + ACTIONS(2065), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2129), 27, + ACTIONS(2063), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70797,15 +70954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27266] = 3, + [27006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, + ACTIONS(2113), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2125), 28, + anon_sym_RBRACE, + ACTIONS(2111), 27, aux_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, @@ -70831,20 +70988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27303] = 5, + [27043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, + ACTIONS(2147), 1, anon_sym_LBRACK_LBRACK, - STATE(544), 1, + STATE(505), 1, sym_string_literal, - ACTIONS(2157), 5, + ACTIONS(2180), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2141), 22, + ACTIONS(2145), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -70867,13 +71024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27344] = 3, + [27084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 2, + ACTIONS(2105), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2079), 27, + ACTIONS(2103), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -70901,18 +71058,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27381] = 3, + [27121] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 2, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2172), 1, + anon_sym_COMMA, + ACTIONS(2182), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + STATE(1217), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27196] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2186), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [27269] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1364), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(539), 1, + sym_string_literal, + ACTIONS(2180), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2145), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [27310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_LBRACK_LBRACK, + STATE(521), 1, + sym_string_literal, + ACTIONS(2180), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2145), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -70935,15 +71235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27418] = 3, + [27351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(2137), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1220), 28, + anon_sym_RBRACE, + ACTIONS(2135), 27, aux_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, @@ -70969,15 +71269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27455] = 3, + [27388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(2129), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1286), 28, + anon_sym_RBRACE, + ACTIONS(2127), 27, aux_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, @@ -71003,30 +71303,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27492] = 5, + [27425] = 22, ACTIONS(3), 1, sym_comment, - STATE(757), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2183), 7, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2188), 1, anon_sym_COMMA, + ACTIONS(2190), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(599), 1, + sym_argument_list, + STATE(1235), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, anon_sym_STAR, - anon_sym_SEMI, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2181), 17, + anon_sym_RBRACE, + ACTIONS(2123), 27, + 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_static, anon_sym_auto, anon_sym_register, @@ -71037,14 +71381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, 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, - [27533] = 3, + [27537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(1330), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 28, + ACTIONS(1328), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71073,12 +71424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27570] = 3, + [27574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(1276), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1302), 28, + ACTIONS(1274), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71107,15 +71458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27607] = 3, + [27611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 2, + ACTIONS(1268), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2111), 27, + ACTIONS(1266), 28, aux_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, @@ -71141,12 +71492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27644] = 3, + [27648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1310), 28, + ACTIONS(1124), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71175,12 +71526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27681] = 3, + [27685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1122), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1364), 28, + ACTIONS(1120), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71209,20 +71560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27718] = 5, + [27722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, + ACTIONS(1080), 1, anon_sym_LBRACK_LBRACK, - STATE(534), 1, - sym_string_literal, - ACTIONS(2157), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2141), 22, + ACTIONS(1078), 28, + aux_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, @@ -71248,10 +71597,10 @@ static const uint16_t ts_small_parse_table[] = { [27759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 2, + ACTIONS(2121), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1220), 27, + ACTIONS(2119), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -71282,698 +71631,698 @@ static const uint16_t ts_small_parse_table[] = { [27796] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2188), 1, + ACTIONS(2192), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [27868] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_SEMI, + ACTIONS(2194), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [27940] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2192), 1, + ACTIONS(2196), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28012] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2194), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2196), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28156] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2198), 1, + ACTIONS(2202), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28228] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2200), 1, + ACTIONS(2204), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2202), 1, + ACTIONS(2206), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28372] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2204), 1, + ACTIONS(2208), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28444] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2206), 2, + ACTIONS(2210), 2, anon_sym_COMMA, anon_sym_RPAREN, [28514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2212), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2210), 1, + ACTIONS(2214), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28658] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2212), 1, + ACTIONS(2216), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28730] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1424), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1426), 1, anon_sym_STAR, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - STATE(1072), 1, + STATE(1080), 1, sym__declarator, - STATE(1152), 1, + STATE(1156), 1, sym__abstract_declarator, - STATE(1176), 1, + STATE(1178), 1, sym_parameter_list, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - ACTIONS(2214), 2, + ACTIONS(2218), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1169), 4, + STATE(1170), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -71989,381 +72338,330 @@ static const uint16_t ts_small_parse_table[] = { [28790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(2220), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2222), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [28934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2224), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [29006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29078] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2224), 1, + ACTIONS(2226), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29150] = 20, + [29078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2226), 2, + ACTIONS(2228), 2, anon_sym_COMMA, anon_sym_SEMI, - [29220] = 21, + [29148] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2228), 1, - anon_sym_RPAREN, + ACTIONS(2230), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29292] = 7, + [29220] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(2239), 1, + ACTIONS(2241), 1, sym_primitive_type, - STATE(757), 1, + STATE(736), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2237), 4, + ACTIONS(2239), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2233), 6, + ACTIONS(2235), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2235), 15, + ACTIONS(2237), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -72379,2153 +72677,2256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [29336] = 20, + [29264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29336] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2245), 2, anon_sym_COMMA, anon_sym_RPAREN, [29406] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RPAREN, + ACTIONS(2247), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [29478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_SEMI, + ACTIONS(2249), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [29550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2247), 1, - anon_sym_SEMI, + ACTIONS(2251), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [29622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2249), 1, - anon_sym_RPAREN, + ACTIONS(2253), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [29694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 2, + ACTIONS(2255), 2, anon_sym_COMMA, anon_sym_RBRACE, [29764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2253), 1, + ACTIONS(2257), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29836] = 20, + [29836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2259), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2255), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [29906] = 21, + [29908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [29978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2259), 1, + ACTIONS(2263), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2261), 1, + ACTIONS(2265), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30122] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2263), 1, + ACTIONS(2267), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2265), 1, - anon_sym_RPAREN, + ACTIONS(2269), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30266] = 20, + [30266] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2271), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2267), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [30336] = 21, + [30338] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2269), 1, + ACTIONS(2273), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30408] = 21, + [30410] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2271), 1, + ACTIONS(2275), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30480] = 21, + [30482] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2273), 1, - anon_sym_RPAREN, + ACTIONS(2277), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30552] = 21, + [30554] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2279), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [30624] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2277), 1, + ACTIONS(2281), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30696] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2279), 1, + ACTIONS(2283), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30768] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2281), 1, + ACTIONS(2285), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30840] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2283), 1, + ACTIONS(2287), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [30912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2289), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30984] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2285), 1, - anon_sym_SEMI, + ACTIONS(2291), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30984] = 21, + [31056] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2287), 1, + ACTIONS(2293), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31056] = 21, + [31128] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2289), 1, + ACTIONS(2295), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31128] = 21, + [31200] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2291), 1, + ACTIONS(2297), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31200] = 21, + [31272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2293), 1, + ACTIONS(2299), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31272] = 21, + [31344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RPAREN, + ACTIONS(2301), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31344] = 21, + [31416] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2297), 1, + ACTIONS(2303), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31416] = 21, + [31488] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31488] = 21, + [31560] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2301), 1, + ACTIONS(2307), 1, anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31560] = 20, + [31632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2309), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [31630] = 21, + [31704] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2305), 1, - anon_sym_SEMI, + ACTIONS(2311), 1, + anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31702] = 21, + [31776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2307), 1, - anon_sym_RPAREN, + ACTIONS(2313), 1, + anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31774] = 21, + [31848] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - ACTIONS(2309), 1, - anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31846] = 21, + ACTIONS(2315), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [31918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2145), 1, + ACTIONS(2184), 1, anon_sym_COMMA, - ACTIONS(2311), 1, + ACTIONS(2317), 1, anon_sym_SEMI, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31918] = 21, + [31990] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2325), 1, anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2145), 1, - anon_sym_COMMA, - ACTIONS(2313), 1, - anon_sym_SEMI, + ACTIONS(2327), 1, + anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31990] = 15, + ACTIONS(1821), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [32053] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 5, + ACTIONS(1821), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [32049] = 14, + [32112] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2041), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2337), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, anon_sym_STAR, - STATE(1030), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1072), 1, - sym__declarator, - STATE(1395), 1, - sym_ms_based_modifier, - ACTIONS(2047), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1011), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1028), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32106] = 20, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32181] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1965), 1, + anon_sym_RBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, - anon_sym_AMP_AMP, - ACTIONS(2337), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2325), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2327), 1, anon_sym_AMP, + ACTIONS(2339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP_AMP, ACTIONS(2343), 1, - anon_sym_RBRACK, + anon_sym_PIPE, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32175] = 20, + [32250] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2345), 1, anon_sym_QMARK, ACTIONS(2347), 1, - anon_sym_COLON, + anon_sym_RBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32244] = 20, + [32319] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_RBRACK, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2349), 1, + anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32313] = 14, + [32388] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1049), 1, + STATE(1060), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1027), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1028), 2, + STATE(839), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, + STATE(1031), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -74538,135 +74939,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32370] = 20, + [32445] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1761), 1, + anon_sym_RBRACK, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2345), 1, anon_sym_QMARK, - ACTIONS(2349), 1, - anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32439] = 20, + [32514] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACK, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2355), 1, + anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32508] = 14, + [32583] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1081), 1, + STATE(1090), 1, sym__field_declarator, - STATE(1369), 1, + STATE(1373), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(852), 2, + STATE(855), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1017), 2, + STATE(1002), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1132), 5, + STATE(1136), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -74679,86 +75080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32565] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_COLON, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32634] = 14, + [32640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1072), 1, + STATE(1080), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(829), 2, + STATE(844), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1011), 2, + STATE(1015), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -74771,86 +75123,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32691] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1973), 1, - anon_sym_RBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - ACTIONS(2319), 1, - anon_sym_SLASH, - ACTIONS(2333), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, - anon_sym_AMP_AMP, - ACTIONS(2337), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_QMARK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2315), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2317), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2323), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2325), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32760] = 14, + [32697] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1057), 1, + STATE(1080), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(825), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1000), 2, + STATE(1015), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, + STATE(1032), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -74863,229 +75166,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32817] = 19, + [32754] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1885), 2, + ACTIONS(1849), 2, anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32884] = 20, + [32821] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1773), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, - anon_sym_AMP_AMP, - ACTIONS(2337), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2325), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2327), 1, anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_QMARK, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2315), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2317), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2323), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2325), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32953] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - ACTIONS(2319), 1, - anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, - ACTIONS(2359), 1, - anon_sym_RBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33022] = 20, + [32890] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, - anon_sym_RBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, + ACTIONS(2363), 1, + anon_sym_RBRACK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33091] = 10, + [32959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1835), 6, + ACTIONS(1825), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1829), 11, + ACTIONS(1821), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -75097,465 +75351,559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [33140] = 18, + [33008] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2351), 1, + anon_sym_LPAREN2, + ACTIONS(2353), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1054), 1, + sym__declarator, + STATE(1400), 1, + sym_ms_based_modifier, + ACTIONS(2051), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1017), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1032), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2049), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [33065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2335), 1, - anon_sym_AMP_AMP, - ACTIONS(2337), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2325), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2327), 1, anon_sym_AMP, + ACTIONS(2341), 1, + anon_sym_AMP_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 3, + ACTIONS(1821), 3, anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [33205] = 20, + [33130] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(1931), 1, + anon_sym_RBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2345), 1, anon_sym_QMARK, - ACTIONS(2361), 1, - anon_sym_RPAREN, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33274] = 20, + [33199] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1749), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33343] = 20, + [33268] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1787), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33412] = 12, + [33337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1747), 1, + anon_sym_RBRACK, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE, + ACTIONS(2345), 1, + anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1921), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1919), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2331), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [33465] = 17, + ACTIONS(2335), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33406] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + ACTIONS(2361), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1093), 1, + sym__field_declarator, + STATE(1373), 1, + sym_ms_based_modifier, + ACTIONS(2051), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(856), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1013), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2049), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [33463] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2337), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2325), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2327), 1, anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 4, + ACTIONS(1821), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [33528] = 20, + [33526] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2363), 1, + ACTIONS(2365), 1, anon_sym_COMMA, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33597] = 20, + [33595] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2367), 1, anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33666] = 20, + [33664] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1771), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33735] = 14, + [33733] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1082), 1, + STATE(1093), 1, sym__field_declarator, - STATE(1369), 1, + STATE(1373), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(853), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1015), 2, + STATE(1013), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, + STATE(1032), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1132), 5, + STATE(1136), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -75568,37 +75916,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33792] = 14, + [33790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1082), 1, + STATE(1089), 1, sym__field_declarator, - STATE(1369), 1, + STATE(1373), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1015), 2, + STATE(995), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1028), 2, + STATE(1032), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1132), 5, + STATE(1136), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -75611,361 +75959,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33849] = 14, + [33847] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2323), 1, + anon_sym_SLASH, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2319), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2321), 2, anon_sym_STAR, - STATE(1030), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1086), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - ACTIONS(2047), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1006), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1028), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [33906] = 17, + anon_sym_PERCENT, + ACTIONS(2335), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1955), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1953), 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, + [33900] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_RBRACK, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, + anon_sym_SLASH, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE, + ACTIONS(2345), 1, + anon_sym_QMARK, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2319), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2329), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2331), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2333), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2335), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33969] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2369), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1831), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2081), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2099), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34038] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1835), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2327), 1, anon_sym_AMP, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 4, + ACTIONS(1821), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [33969] = 20, + [34099] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34038] = 20, + [34168] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_RBRACK, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2371), 1, + anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34107] = 20, + [34237] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1759), 1, + anon_sym_RBRACK, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(1989), 1, + anon_sym_LPAREN2, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2065), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2345), 1, anon_sym_QMARK, - ACTIONS(2367), 1, - anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34176] = 14, + [34306] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2369), 1, - sym_identifier, - ACTIONS(2371), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, - anon_sym_STAR, - STATE(1030), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1104), 1, - sym__type_declarator, - STATE(1535), 1, - sym_ms_based_modifier, - ACTIONS(2047), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(864), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [34233] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(1985), 1, - anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2341), 1, + ACTIONS(2085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 1, + anon_sym_AMP_AMP, + ACTIONS(2089), 1, + anon_sym_PIPE, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, anon_sym_AMP, + ACTIONS(2139), 1, + anon_sym_QMARK, + ACTIONS(2373), 1, + anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [34294] = 14, + [34375] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1096), 1, + STATE(1108), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(867), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(989), 2, + STATE(1023), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -75978,184 +76382,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34351] = 20, + [34432] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2375), 1, + ACTIONS(2381), 1, anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34420] = 20, + [34501] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, ACTIONS(2377), 1, - anon_sym_RPAREN, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34489] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, - anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, - anon_sym_CARET, - ACTIONS(2123), 1, - anon_sym_QMARK, ACTIONS(2379), 1, - anon_sym_COLON, - STATE(599), 1, - sym_argument_list, - ACTIONS(1821), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2061), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2067), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2069), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(1034), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1110), 1, + sym__type_declarator, + STATE(1538), 1, + sym_ms_based_modifier, + ACTIONS(2051), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(996), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1032), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2049), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, [34558] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1106), 1, + STATE(1108), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1025), 2, + STATE(1023), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1028), 2, + STATE(1032), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -76171,132 +76520,132 @@ static const uint16_t ts_small_parse_table[] = { [34615] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1753), 1, anon_sym_RBRACK, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2325), 1, + anon_sym_CARET, + ACTIONS(2327), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_CARET, - ACTIONS(2341), 1, - anon_sym_AMP, ACTIONS(2345), 1, anon_sym_QMARK, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2329), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, [34684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_RBRACK, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(1827), 1, + anon_sym_LBRACK, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2333), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2335), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2337), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2341), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2139), 1, anon_sym_QMARK, + ACTIONS(2383), 1, + anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2321), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [34753] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - STATE(1104), 1, + STATE(1100), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - ACTIONS(2047), 2, + ACTIONS(2051), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1028), 2, + STATE(868), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2045), 3, + STATE(992), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2049), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -76312,32 +76661,32 @@ static const uint16_t ts_small_parse_table[] = { [34810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1835), 4, + ACTIONS(1825), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1829), 11, + ACTIONS(1821), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -76352,39 +76701,39 @@ static const uint16_t ts_small_parse_table[] = { [34861] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1825), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1835), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2323), 2, + ACTIONS(2331), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2325), 2, + ACTIONS(2333), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1829), 7, + ACTIONS(1821), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -76395,35 +76744,35 @@ static const uint16_t ts_small_parse_table[] = { [34918] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1989), 1, anon_sym_LPAREN2, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_SLASH, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2315), 2, + ACTIONS(2319), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2317), 2, + ACTIONS(2321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2327), 2, + ACTIONS(2335), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1835), 4, + ACTIONS(1825), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1829), 9, + ACTIONS(1821), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -76436,50 +76785,50 @@ static const uint16_t ts_small_parse_table[] = { [34971] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, + ACTIONS(2083), 1, anon_sym_SLASH, - ACTIONS(2065), 1, - anon_sym_AMP, - ACTIONS(2091), 1, + ACTIONS(2085), 1, anon_sym_PIPE_PIPE, - ACTIONS(2093), 1, + ACTIONS(2087), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, + ACTIONS(2089), 1, anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2123), 1, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2139), 1, anon_sym_QMARK, - ACTIONS(2381), 1, + ACTIONS(2385), 1, anon_sym_COLON, STATE(599), 1, sym_argument_list, - ACTIONS(1821), 2, + ACTIONS(1829), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1823), 2, + ACTIONS(1831), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2059), 2, + ACTIONS(2079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2061), 2, + ACTIONS(2081), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2067), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 2, + ACTIONS(2097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2071), 2, + ACTIONS(2099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, + ACTIONS(2101), 2, anon_sym_LT_LT, anon_sym_GT_GT, [35040] = 10, @@ -76491,12 +76840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2383), 1, + ACTIONS(2387), 1, anon_sym_SEMI, - ACTIONS(2169), 2, + ACTIONS(2168), 2, anon_sym___based, sym_identifier, - ACTIONS(2171), 2, + ACTIONS(2170), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -76512,7 +76861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(732), 7, + STATE(729), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76529,12 +76878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2385), 1, + ACTIONS(2389), 1, anon_sym_SEMI, - ACTIONS(2169), 2, + ACTIONS(2168), 2, anon_sym___based, sym_identifier, - ACTIONS(2171), 2, + ACTIONS(2170), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -76550,7 +76899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(732), 7, + STATE(729), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76567,12 +76916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2391), 1, anon_sym_SEMI, - ACTIONS(2169), 2, + ACTIONS(2168), 2, anon_sym___based, sym_identifier, - ACTIONS(2171), 2, + ACTIONS(2170), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -76588,7 +76937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(732), 7, + STATE(729), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76605,12 +76954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(886), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2389), 1, + ACTIONS(2393), 1, anon_sym_SEMI, - ACTIONS(2169), 2, + ACTIONS(2168), 2, anon_sym___based, sym_identifier, - ACTIONS(2171), 2, + ACTIONS(2170), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -76626,7 +76975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(732), 7, + STATE(729), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76643,25 +76992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(2391), 1, + ACTIONS(2395), 1, anon_sym_enum, - STATE(939), 1, + STATE(945), 1, sym__type_specifier, - STATE(993), 1, + STATE(1030), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1440), 1, + STATE(1549), 1, sym_type_descriptor, - STATE(892), 2, + STATE(900), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, + ACTIONS(1380), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -76674,55 +77023,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35285] = 5, + [35285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2401), 1, anon_sym_LBRACE, - STATE(915), 1, - sym_field_declaration_list, - ACTIONS(2395), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2393), 16, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [35322] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(2403), 1, - anon_sym_LBRACE, - ACTIONS(2405), 1, anon_sym_COLON, - STATE(903), 1, + STATE(901), 1, sym_enumerator_list, - ACTIONS(2401), 6, + ACTIONS(2399), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2399), 16, + ACTIONS(2397), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -76739,134 +77056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35361] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1482), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1495), 1, - sym_type_descriptor, - STATE(889), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35414] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1482), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1460), 1, - sym_type_descriptor, - STATE(889), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35467] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1482), 1, - sym_identifier, - ACTIONS(2391), 1, - anon_sym_enum, - STATE(939), 1, - sym__type_specifier, - STATE(993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1544), 1, - sym_type_descriptor, - STATE(892), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(909), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35520] = 5, + [35324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, + ACTIONS(2409), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_enumerator_list, - ACTIONS(2409), 7, + STATE(909), 1, + sym_field_declaration_list, + ACTIONS(2407), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -76874,7 +77071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2407), 16, + ACTIONS(2405), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -76891,13 +77088,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35557] = 5, + [35361] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1486), 1, + sym_identifier, + STATE(945), 1, + sym__type_specifier, + STATE(1030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1462), 1, + sym_type_descriptor, + STATE(898), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1380), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [35414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, anon_sym_LBRACE, - STATE(906), 1, - sym_field_declaration_list, + STATE(910), 1, + sym_enumerator_list, ACTIONS(2413), 7, anon_sym_COMMA, anon_sym_RPAREN, @@ -76923,12 +77160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35594] = 5, + [35451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2409), 1, anon_sym_LBRACE, - STATE(897), 1, + STATE(918), 1, sym_field_declaration_list, ACTIONS(2417), 7, anon_sym_COMMA, @@ -76955,12 +77192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35631] = 5, + [35488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2409), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(922), 1, sym_field_declaration_list, ACTIONS(2421), 7, anon_sym_COMMA, @@ -76987,7 +77224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35668] = 12, + [35525] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -76998,21 +77235,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1052), 1, + STATE(945), 1, sym__type_specifier, - STATE(887), 2, + STATE(1030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1514), 1, + sym_type_descriptor, + STATE(898), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1380), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77025,32 +77264,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35718] = 12, + [35578] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1048), 1, + ACTIONS(2395), 1, + anon_sym_enum, + STATE(945), 1, sym__type_specifier, - STATE(888), 2, + STATE(1030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1370), 1, + sym_type_descriptor, + STATE(900), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1380), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77063,38 +77304,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35768] = 5, + [35631] = 5, ACTIONS(3), 1, sym_comment, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2013), 6, + ACTIONS(2409), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_field_declaration_list, + ACTIONS(2425), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2423), 6, + ACTIONS(2423), 16, + 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_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2011), 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, - [35804] = 12, + [35668] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77105,21 +77347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(980), 1, - sym__type_specifier, - STATE(993), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(888), 2, + STATE(1052), 1, + sym__type_specifier, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77132,7 +77374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35854] = 12, + [35718] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77143,13 +77385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1059), 1, + STATE(1073), 1, sym__type_specifier, - STATE(888), 2, + STATE(892), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -77157,7 +77399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77170,7 +77412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35904] = 12, + [35768] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77181,13 +77423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1068), 1, + STATE(1081), 1, sym__type_specifier, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -77195,7 +77437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77208,32 +77450,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35954] = 12, + [35818] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - ACTIONS(2391), 1, - anon_sym_enum, - STATE(980), 1, - sym__type_specifier, - STATE(993), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(888), 2, + STATE(1066), 1, + sym__type_specifier, + STATE(896), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1376), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77246,7 +77488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36004] = 12, + [35868] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77257,13 +77499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1073), 1, + STATE(1070), 1, sym__type_specifier, - STATE(891), 2, + STATE(890), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -77271,7 +77513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77284,7 +77526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36054] = 12, + [35918] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77295,13 +77537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1071), 1, + STATE(1065), 1, sym__type_specifier, - STATE(888), 2, + STATE(899), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -77309,7 +77551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77322,7 +77564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36104] = 12, + [35968] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77333,13 +77575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, + STATE(789), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1055), 1, + STATE(1075), 1, sym__type_specifier, - STATE(894), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -77347,7 +77589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77360,7 +77602,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36154] = 12, + [36018] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1999), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2427), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(1997), 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, + [36054] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -77371,21 +77644,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1482), 1, + ACTIONS(1486), 1, sym_identifier, - STATE(786), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, + STATE(984), 1, sym__type_specifier, - STATE(890), 2, + STATE(1030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1380), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(909), 5, + STATE(920), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77398,66 +77671,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36204] = 3, + [36104] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2426), 16, - 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, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1486), 1, + sym_identifier, + STATE(789), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1055), 1, + sym__type_specifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36235] = 3, + [36154] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2430), 16, - 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, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1486), 1, + sym_identifier, + ACTIONS(2395), 1, + anon_sym_enum, + STATE(984), 1, + sym__type_specifier, + STATE(1030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1380), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(920), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36266] = 3, + [36204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 7, + ACTIONS(2432), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77465,7 +77758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2434), 16, + ACTIONS(2430), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77482,18 +77775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36297] = 3, + [36235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 7, + ACTIONS(2434), 1, + anon_sym_LPAREN2, + ACTIONS(1544), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2438), 16, + ACTIONS(1528), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77510,10 +77804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36328] = 3, + [36268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 7, + ACTIONS(2439), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77521,7 +77815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2442), 16, + ACTIONS(2437), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77538,10 +77832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36359] = 3, + [36299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 7, + ACTIONS(2443), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77549,7 +77843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2446), 16, + ACTIONS(2441), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77566,10 +77860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36390] = 3, + [36330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 7, + ACTIONS(2447), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77577,7 +77871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2450), 16, + ACTIONS(2445), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77594,10 +77888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36421] = 3, + [36361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 7, + ACTIONS(2451), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77605,7 +77899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2454), 16, + ACTIONS(2449), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77622,10 +77916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36452] = 3, + [36392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 7, + ACTIONS(2455), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77633,7 +77927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2458), 16, + ACTIONS(2453), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77650,10 +77944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36483] = 3, + [36423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(2459), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77661,7 +77955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2462), 16, + ACTIONS(2457), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77678,10 +77972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36514] = 3, + [36454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 7, + ACTIONS(2463), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -77689,7 +77983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2466), 16, + ACTIONS(2461), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77706,19 +78000,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36545] = 4, + [36485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(2467), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1540), 6, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2465), 16, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [36516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1524), 16, + ACTIONS(2469), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -77735,7 +78056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36578] = 3, + [36547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2475), 7, @@ -77763,7 +78084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36609] = 3, + [36578] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2479), 7, @@ -77791,7 +78112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36640] = 3, + [36609] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2483), 7, @@ -77819,7 +78140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36671] = 3, + [36640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2487), 7, @@ -77847,7 +78168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36702] = 3, + [36671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2491), 7, @@ -77875,7 +78196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36733] = 3, + [36702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2495), 7, @@ -77903,7 +78224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36764] = 3, + [36733] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2499), 7, @@ -77931,15 +78252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36795] = 3, + [36764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, + ACTIONS(2503), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2501), 22, + anon_sym_COLON, + ACTIONS(2501), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -77950,16 +78279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, 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, - [36826] = 3, + [36795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2507), 7, @@ -77987,7 +78308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36857] = 3, + [36826] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2511), 7, @@ -78015,7 +78336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36888] = 3, + [36857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2515), 7, @@ -78043,20 +78364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [36919] = 5, + [36888] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2519), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2517), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [36919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2523), 1, anon_sym_LPAREN2, - STATE(934), 1, + STATE(948), 1, sym_preproc_argument_list, - ACTIONS(2521), 5, + ACTIONS(2525), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2517), 15, + ACTIONS(2521), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -78072,262 +78421,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36953] = 10, + [36953] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - sym_identifier, - ACTIONS(2525), 1, - anon_sym_RPAREN, ACTIONS(2527), 1, - anon_sym_LPAREN2, - ACTIONS(2529), 1, - anon_sym_defined, - ACTIONS(2535), 1, - sym_number_literal, - ACTIONS(2531), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2537), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(923), 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, - [36996] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 1, anon_sym_COMMA, - ACTIONS(2541), 1, + ACTIONS(2529), 1, anon_sym_RPAREN, - ACTIONS(2547), 1, + ACTIONS(2535), 1, anon_sym_SLASH, - ACTIONS(2549), 1, + ACTIONS(2537), 1, anon_sym_PIPE_PIPE, - ACTIONS(2551), 1, - anon_sym_AMP_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2555), 1, - anon_sym_CARET, - ACTIONS(2557), 1, - anon_sym_AMP, - STATE(1209), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37051] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(2539), 1, - anon_sym_COMMA, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2551), 1, - anon_sym_AMP_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2555), 1, - anon_sym_CARET, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2567), 1, - anon_sym_RPAREN, - STATE(1219), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37106] = 5, - ACTIONS(2517), 1, - anon_sym_LF, - ACTIONS(2569), 1, - anon_sym_LPAREN2, - ACTIONS(2571), 1, - sym_comment, - STATE(994), 1, - sym_preproc_argument_list, - ACTIONS(2521), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(2541), 1, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - anon_sym_LBRACK, - ACTIONS(1540), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2573), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1524), 15, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [37174] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2523), 1, - sym_identifier, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - ACTIONS(2529), 1, - anon_sym_defined, - ACTIONS(2583), 1, - anon_sym_RPAREN, - ACTIONS(2585), 1, - sym_number_literal, - ACTIONS(2531), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2533), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2537), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(922), 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, - [37217] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2523), 1, - sym_identifier, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - ACTIONS(2529), 1, - anon_sym_defined, - ACTIONS(2587), 1, - sym_number_literal, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, + anon_sym_AMP, + STATE(1213), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(2531), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2533), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(936), 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, - [37257] = 9, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37008] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2557), 1, + anon_sym_RPAREN, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2589), 1, + ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(955), 7, + STATE(927), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78335,55 +78493,71 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37297] = 3, + [37051] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 5, + ACTIONS(2527), 1, + anon_sym_COMMA, + ACTIONS(2535), 1, anon_sym_SLASH, + ACTIONS(2537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2539), 1, + anon_sym_AMP_AMP, + ACTIONS(2541), 1, anon_sym_PIPE, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2591), 15, - anon_sym_COMMA, + ACTIONS(2571), 1, anon_sym_RPAREN, + STATE(1223), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2533), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2553), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37325] = 9, + [37106] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2605), 1, + ACTIONS(2573), 1, + anon_sym_RPAREN, + ACTIONS(2575), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1022), 7, + STATE(925), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78391,82 +78565,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37365] = 5, + [37149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2611), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2609), 13, + ACTIONS(2580), 1, + anon_sym_LPAREN2, + ACTIONS(2584), 1, + anon_sym_LBRACK, + ACTIONS(1544), 2, anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2577), 2, 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, - [37397] = 3, - ACTIONS(3), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 15, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [37184] = 5, + ACTIONS(2521), 1, + anon_sym_LF, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, sym_comment, - ACTIONS(1949), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1000), 1, + sym_preproc_argument_list, + ACTIONS(2525), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37425] = 9, + [37217] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2613), 1, + ACTIONS(2591), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1014), 7, + STATE(933), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78474,41 +78653,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37465] = 3, + [37257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2615), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2593), 1, + sym_identifier, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + anon_sym_defined, + ACTIONS(2603), 1, + sym_number_literal, + ACTIONS(2599), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37493] = 3, + ACTIONS(2605), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1018), 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, + [37297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 5, + ACTIONS(2609), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 15, + ACTIONS(2607), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -78524,16 +78709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [37521] = 3, + [37325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 5, + ACTIONS(1921), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2623), 15, + ACTIONS(1919), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -78549,155 +78734,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [37549] = 3, + [37353] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2609), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2559), 1, + anon_sym_LPAREN2, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2611), 1, + sym_number_literal, + ACTIONS(2563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37577] = 14, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(963), 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, + [37393] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2551), 1, - anon_sym_AMP_AMP, - ACTIONS(2553), 1, - anon_sym_PIPE, ACTIONS(2555), 1, - anon_sym_CARET, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2543), 2, + sym_identifier, + ACTIONS(2559), 1, + anon_sym_LPAREN2, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2613), 1, + sym_number_literal, + ACTIONS(2563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(964), 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, + [37433] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2559), 1, + anon_sym_LPAREN2, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2615), 1, + sym_number_literal, ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37627] = 10, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(966), 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, + [37473] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(2049), 1, - anon_sym_LBRACK, - STATE(1160), 1, - sym__abstract_declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(976), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2629), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2631), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [37669] = 10, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2617), 1, + sym_number_literal, + ACTIONS(2563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(967), 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, + [37513] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(2049), 1, - anon_sym_LBRACK, - STATE(1143), 1, - sym__abstract_declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(944), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2043), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2631), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [37711] = 9, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2619), 1, + sym_number_literal, + ACTIONS(2563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(969), 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, + [37553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2633), 1, + ACTIONS(2621), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(931), 7, + STATE(971), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78705,30 +78920,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37751] = 9, + [37593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2635), 1, + ACTIONS(2623), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(937), 7, + STATE(973), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78736,196 +78951,192 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37791] = 13, + [37633] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2535), 1, anon_sym_SLASH, - ACTIONS(2551), 1, + ACTIONS(2537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2539), 1, anon_sym_AMP_AMP, - ACTIONS(2553), 1, + ACTIONS(2541), 1, anon_sym_PIPE, - ACTIONS(2555), 1, + ACTIONS(2543), 1, anon_sym_CARET, - ACTIONS(2557), 1, + ACTIONS(2545), 1, anon_sym_AMP, - ACTIONS(2543), 2, + ACTIONS(2531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2545), 2, + ACTIONS(2533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2559), 2, + ACTIONS(2547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2561), 2, + ACTIONS(2549), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2563), 2, + ACTIONS(2551), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2565), 2, + ACTIONS(2553), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2609), 3, + ACTIONS(2625), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [37839] = 10, + [37683] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(2561), 1, + anon_sym_defined, + ACTIONS(2627), 1, + sym_number_literal, + ACTIONS(2563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(975), 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, + [37723] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LPAREN2, + ACTIONS(1671), 1, anon_sym_STAR, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - STATE(1152), 1, + STATE(1150), 1, sym__abstract_declarator, - STATE(1176), 1, + STATE(1178), 1, sym_parameter_list, - STATE(888), 2, + STATE(968), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2214), 3, + ACTIONS(2047), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1169), 4, + STATE(1170), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2631), 6, + ACTIONS(2629), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37881] = 12, + [37765] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2553), 1, - anon_sym_PIPE, - ACTIONS(2555), 1, - anon_sym_CARET, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, + ACTIONS(1669), 1, + anon_sym_LPAREN2, + ACTIONS(1671), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2609), 4, + ACTIONS(2053), 1, + anon_sym_LBRACK, + STATE(1164), 1, + sym__abstract_declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(981), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2631), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [37927] = 9, + anon_sym_COLON, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2629), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37807] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2637), 1, + ACTIONS(2633), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(943), 7, + STATE(976), 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, - [37967] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2555), 1, - anon_sym_CARET, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2611), 1, - anon_sym_PIPE, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2609), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [38013] = 9, + sym_char_literal, + [37847] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2639), 1, + ACTIONS(2635), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(990), 7, + STATE(978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78933,63 +79144,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38053] = 11, + [37887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2639), 5, anon_sym_SLASH, - ACTIONS(2557), 1, - anon_sym_AMP, - ACTIONS(2611), 1, anon_sym_PIPE, - ACTIONS(2543), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2637), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2545), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2565), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2609), 5, + [37915] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1424), 1, + anon_sym_LPAREN2, + ACTIONS(1426), 1, + anon_sym_STAR, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2053), 1, + anon_sym_LBRACK, + STATE(1122), 1, + sym__declarator, + STATE(1172), 1, + sym__abstract_declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(1400), 1, + sym_ms_based_modifier, + ACTIONS(2641), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [38097] = 9, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37963] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2641), 1, + ACTIONS(2643), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(945), 7, + STATE(1010), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -78997,30 +79235,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38137] = 9, + [38003] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2643), 1, + ACTIONS(2645), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(947), 7, + STATE(997), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79028,30 +79266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38177] = 9, + [38043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2645), 1, + ACTIONS(2647), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1009), 7, + STATE(1026), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79059,30 +79297,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38217] = 9, + [38083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2647), 1, + ACTIONS(2649), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(949), 7, + STATE(1005), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79090,122 +79328,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38257] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2611), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2609), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [38299] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2561), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2611), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2609), 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, - [38339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_SLASH, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2611), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2609), 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, - [38375] = 9, + [38123] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2649), 1, + ACTIONS(2651), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(954), 7, + STATE(1020), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79213,30 +79359,62 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38415] = 9, + [38163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(1669), 1, + anon_sym_LPAREN2, + ACTIONS(1671), 1, + anon_sym_STAR, + ACTIONS(2053), 1, + anon_sym_LBRACK, + STATE(1151), 1, + sym__abstract_declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2653), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2629), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38205] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2651), 1, + ACTIONS(2655), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1018), 7, + STATE(1028), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79244,30 +79422,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38455] = 9, + [38245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2653), 1, + ACTIONS(2657), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1002), 7, + STATE(1007), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79275,30 +79453,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38495] = 9, + [38285] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2655), 1, + ACTIONS(2659), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1008), 7, + STATE(994), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79306,25 +79484,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38535] = 6, + [38325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2663), 5, anon_sym_SLASH, - ACTIONS(2543), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2545), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2611), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2609), 11, + ACTIONS(2661), 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, @@ -79334,30 +79509,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [38569] = 9, + [38353] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2657), 1, + ACTIONS(2665), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1010), 7, + STATE(1027), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79365,30 +79540,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38609] = 9, + [38393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2669), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2667), 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, + [38421] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2659), 1, + ACTIONS(2671), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1012), 7, + STATE(1006), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79396,30 +79596,82 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38649] = 9, + [38461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2675), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 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, + [38493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 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, + [38521] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2661), 1, + ACTIONS(2677), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1024), 7, + STATE(1011), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79427,61 +79679,165 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38689] = 9, + [38561] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - sym_identifier, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - ACTIONS(2529), 1, - anon_sym_defined, - ACTIONS(2663), 1, - sym_number_literal, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2539), 1, + anon_sym_AMP_AMP, + ACTIONS(2541), 1, + anon_sym_PIPE, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, + anon_sym_AMP, ACTIONS(2531), 2, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2673), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [38609] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2541), 1, + anon_sym_PIPE, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, + anon_sym_AMP, + ACTIONS(2531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1019), 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, - [38729] = 9, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2673), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [38655] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(1669), 1, + anon_sym_LPAREN2, + ACTIONS(1671), 1, + anon_sym_STAR, + ACTIONS(2053), 1, + anon_sym_LBRACK, + STATE(1156), 1, + sym__abstract_declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2218), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2629), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38697] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, + anon_sym_AMP, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2673), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [38743] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2665), 1, + ACTIONS(2679), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1020), 7, + STATE(1029), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79489,62 +79845,120 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38769] = 10, + [38783] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2545), 1, + anon_sym_AMP, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2673), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [38827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2681), 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, + [38855] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2533), 2, anon_sym_STAR, - ACTIONS(2049), 1, - anon_sym_LBRACK, - STATE(1147), 1, - sym__abstract_declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2667), 3, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2673), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2631), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38811] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [38897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2669), 1, + ACTIONS(2685), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1013), 7, + STATE(1025), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79552,61 +79966,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38851] = 9, + [38937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - sym_identifier, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - ACTIONS(2529), 1, - anon_sym_defined, - ACTIONS(2671), 1, - sym_number_literal, + ACTIONS(2535), 1, + anon_sym_SLASH, ACTIONS(2531), 2, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2673), 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, + [38977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(938), 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, - [38891] = 9, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 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, + [39013] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2673), 1, + ACTIONS(2687), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(991), 7, + STATE(1024), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79614,16 +80057,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38931] = 3, + [39053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 5, + ACTIONS(2535), 1, anon_sym_SLASH, + ACTIONS(2531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2675), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2675), 15, + ACTIONS(2673), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2689), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -79639,30 +80110,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [38959] = 9, + [39115] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2679), 1, + ACTIONS(2693), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1026), 7, + STATE(1012), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79670,61 +80141,62 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38999] = 9, + [39155] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, + ACTIONS(1669), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, - anon_sym_defined, - ACTIONS(2681), 1, - sym_number_literal, - ACTIONS(2601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(995), 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, - [39039] = 9, + ACTIONS(1671), 1, + anon_sym_STAR, + ACTIONS(2053), 1, + anon_sym_LBRACK, + STATE(1162), 1, + sym__abstract_declarator, + STATE(1178), 1, + sym_parameter_list, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2695), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1170), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2629), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39197] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2683), 1, + ACTIONS(2697), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1004), 7, + STATE(1022), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79732,30 +80204,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39079] = 9, + [39237] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2685), 1, + ACTIONS(2699), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1007), 7, + STATE(993), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79763,48 +80235,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39119] = 10, + [39277] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1669), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(1671), 1, anon_sym_STAR, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - STATE(1153), 1, + STATE(1159), 1, sym__abstract_declarator, - STATE(1176), 1, + STATE(1178), 1, sym_parameter_list, - STATE(888), 2, + STATE(955), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2687), 3, + ACTIONS(2701), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1169), 4, + STATE(1170), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2631), 6, + ACTIONS(2629), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [39161] = 3, + [39319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 5, + ACTIONS(2705), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2689), 15, + ACTIONS(2703), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -79820,47 +80292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [39189] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, - anon_sym_LPAREN2, - ACTIONS(2599), 1, - anon_sym_defined, - ACTIONS(2693), 1, - sym_number_literal, - ACTIONS(2601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(998), 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, - [39229] = 3, + [39347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 5, + ACTIONS(2709), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2695), 15, + ACTIONS(2707), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -79876,62 +80317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [39257] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(2049), 1, - anon_sym_LBRACK, - STATE(1154), 1, - sym__abstract_declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(967), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2699), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2631), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39299] = 9, + [39375] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2701), 1, + ACTIONS(2711), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1003), 7, + STATE(1021), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -79939,65 +80348,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39339] = 13, + [39415] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_LPAREN2, - ACTIONS(1430), 1, - anon_sym_STAR, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2049), 1, - anon_sym_LBRACK, - STATE(1118), 1, - sym__declarator, - STATE(1173), 1, - sym__abstract_declarator, - STATE(1176), 1, - sym_parameter_list, - STATE(1395), 1, - sym_ms_based_modifier, - ACTIONS(2703), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1169), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [39387] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2705), 1, + ACTIONS(2713), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(999), 7, + STATE(1016), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80005,55 +80379,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 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, [39455] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2711), 1, + ACTIONS(2715), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(956), 7, + STATE(1014), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80064,27 +80413,27 @@ static const uint16_t ts_small_parse_table[] = { [39495] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_defined, - ACTIONS(2713), 1, + ACTIONS(2717), 1, sym_number_literal, - ACTIONS(2601), 2, + ACTIONS(2599), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2603), 2, + ACTIONS(2601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2607), 5, + ACTIONS(2605), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1001), 7, + STATE(1019), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80095,27 +80444,27 @@ static const uint16_t ts_small_parse_table[] = { [39535] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2559), 1, anon_sym_LPAREN2, - ACTIONS(2529), 1, + ACTIONS(2561), 1, anon_sym_defined, - ACTIONS(2715), 1, + ACTIONS(2719), 1, sym_number_literal, - ACTIONS(2531), 2, + ACTIONS(2563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2533), 2, + ACTIONS(2565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2537), 5, + ACTIONS(2569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(942), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80123,49 +80472,153 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39575] = 3, - ACTIONS(2571), 1, + [39575] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2377), 1, + anon_sym_LPAREN2, + ACTIONS(2379), 1, + anon_sym_STAR, + STATE(1108), 1, + sym__type_declarator, + STATE(1538), 1, + sym_ms_based_modifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39616] = 12, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2621), 18, + ACTIONS(2675), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2725), 1, + anon_sym_AMP_AMP, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, + anon_sym_CARET, + ACTIONS(2731), 1, + anon_sym_AMP, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(2735), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [39661] = 12, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2725), 1, anon_sym_AMP_AMP, + ACTIONS(2727), 1, anon_sym_PIPE, + ACTIONS(2729), 1, anon_sym_CARET, + ACTIONS(2731), 1, anon_sym_AMP, + ACTIONS(2739), 1, + anon_sym_LF, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2721), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2723), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2735), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39602] = 10, + [39706] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2361), 1, + anon_sym_STAR, + STATE(1082), 1, + sym__field_declarator, + STATE(1373), 1, + sym_ms_based_modifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39747] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2377), 1, + anon_sym_LPAREN2, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1104), 1, + STATE(1111), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -80178,13 +80631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [39643] = 12, - ACTIONS(2571), 1, + [39788] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_LF, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -80193,7 +80642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2719), 2, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2743), 1, + anon_sym_LF, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80202,7 +80655,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -80211,19 +80664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39688] = 5, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2609), 1, + [39833] = 3, + ACTIONS(1919), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(1921), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2611), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -80237,8 +80688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [39719] = 3, - ACTIONS(2571), 1, + [39860] = 3, + ACTIONS(2589), 1, sym_comment, ACTIONS(2707), 1, anon_sym_LF, @@ -80256,45 +80707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39746] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2239), 1, - sym_primitive_type, - ACTIONS(2739), 1, - sym_identifier, - STATE(757), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2237), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2233), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2235), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39781] = 3, - ACTIONS(2571), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39887] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2637), 1, anon_sym_LF, - ACTIONS(2617), 18, + ACTIONS(2639), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80313,22 +80736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [39808] = 6, - ACTIONS(2571), 1, + [39914] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2661), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2663), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2737), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2611), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -80340,30 +80758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39841] = 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39941] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1106), 1, - sym__type_declarator, - STATE(1535), 1, + STATE(1093), 1, + sym__field_declarator, + STATE(1373), 1, sym_ms_based_modifier, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -80371,12 +80791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [39882] = 3, - ACTIONS(2571), 1, + [39982] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2703), 1, anon_sym_LF, - ACTIONS(2691), 18, + ACTIONS(2705), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80395,27 +80815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [39909] = 7, - ACTIONS(2571), 1, + [40009] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2689), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2691), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2737), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2735), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2611), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -80423,12 +80833,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [39944] = 8, - ACTIONS(2571), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40036] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2725), 1, + anon_sym_AMP_AMP, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, + anon_sym_CARET, + ACTIONS(2731), 1, + anon_sym_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2745), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80437,7 +80863,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -80446,51 +80872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2611), 5, - anon_sym_PIPE_PIPE, + [40081] = 12, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2725), 1, anon_sym_AMP_AMP, + ACTIONS(2727), 1, anon_sym_PIPE, + ACTIONS(2729), 1, anon_sym_CARET, - anon_sym_AMP, - [39981] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2041), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_LPAREN2, - ACTIONS(2331), 1, - anon_sym_STAR, - STATE(1072), 1, - sym__declarator, - STATE(1395), 1, - sym_ms_based_modifier, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40022] = 9, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_LF, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2719), 2, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2747), 1, + anon_sym_LF, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80499,125 +80896,80 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2611), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, ACTIONS(2735), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40061] = 14, + [40126] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2535), 1, anon_sym_SLASH, - ACTIONS(2549), 1, + ACTIONS(2537), 1, anon_sym_PIPE_PIPE, - ACTIONS(2551), 1, + ACTIONS(2539), 1, anon_sym_AMP_AMP, - ACTIONS(2553), 1, + ACTIONS(2541), 1, anon_sym_PIPE, - ACTIONS(2555), 1, + ACTIONS(2543), 1, anon_sym_CARET, - ACTIONS(2557), 1, + ACTIONS(2545), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(2749), 1, anon_sym_RPAREN, - ACTIONS(2543), 2, + ACTIONS(2531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2545), 2, + ACTIONS(2533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2559), 2, + ACTIONS(2547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2561), 2, + ACTIONS(2549), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2563), 2, + ACTIONS(2551), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2565), 2, + ACTIONS(2553), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40110] = 10, - ACTIONS(2571), 1, + [40175] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2667), 1, anon_sym_LF, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, - anon_sym_AMP, - ACTIONS(2719), 2, + ACTIONS(2669), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2611), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2735), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [40151] = 12, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2723), 1, anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, anon_sym_AMP_AMP, - ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2743), 1, - anon_sym_LF, - ACTIONS(2719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2737), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2735), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40196] = 3, - ACTIONS(1947), 1, - anon_sym_LF, - ACTIONS(2571), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40202] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(1949), 18, + ACTIONS(2681), 1, + anon_sym_LF, + ACTIONS(2683), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80636,80 +80988,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40223] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_LPAREN2, - ACTIONS(2355), 1, - anon_sym_STAR, - STATE(1078), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40264] = 11, - ACTIONS(2571), 1, + [40229] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2607), 1, anon_sym_LF, - ACTIONS(2727), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, - anon_sym_AMP, - ACTIONS(2611), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2719), 2, + ACTIONS(2609), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2735), 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, - [40307] = 3, - ACTIONS(2571), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40256] = 4, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2611), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2675), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -80723,12 +81037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40334] = 3, - ACTIONS(2571), 1, + [40285] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2625), 18, + ACTIONS(2675), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80747,13 +81061,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40361] = 12, - ACTIONS(2571), 1, + [40312] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + ACTIONS(2361), 1, + anon_sym_STAR, + STATE(1089), 1, + sym__field_declarator, + STATE(1373), 1, + sym_ms_based_modifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [40353] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LF, - ACTIONS(2611), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -80762,7 +81103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2719), 2, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2751), 1, + anon_sym_LF, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80771,7 +81116,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -80780,25 +81125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40406] = 10, + [40398] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1049), 1, + STATE(1054), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -80811,22 +81156,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [40447] = 12, - ACTIONS(2571), 1, + [40439] = 11, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, - anon_sym_AMP_AMP, + ACTIONS(2673), 1, + anon_sym_LF, ACTIONS(2727), 1, anon_sym_PIPE, ACTIONS(2729), 1, anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2745), 1, - anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2675), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80835,7 +81179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -80844,22 +81188,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40492] = 12, - ACTIONS(2571), 1, + [40482] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, - anon_sym_AMP_AMP, - ACTIONS(2727), 1, - anon_sym_PIPE, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2351), 1, + anon_sym_LPAREN2, + ACTIONS(2353), 1, + anon_sym_STAR, + STATE(1053), 1, + sym__declarator, + STATE(1400), 1, + sym_ms_based_modifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [40523] = 10, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2673), 1, + anon_sym_LF, ACTIONS(2729), 1, anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -80868,7 +81237,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2675), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -80877,122 +81250,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40537] = 4, - ACTIONS(2571), 1, + [40564] = 9, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2611), 15, + ACTIONS(2731), 1, + anon_sym_AMP, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40566] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_LPAREN2, - ACTIONS(2355), 1, - anon_sym_STAR, - STATE(1086), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40607] = 3, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_LF, - ACTIONS(2593), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2675), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2735), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40634] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_LPAREN2, - ACTIONS(2355), 1, - anon_sym_STAR, - STATE(1082), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40675] = 12, - ACTIONS(2571), 1, + [40603] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -81001,9 +81291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2749), 1, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2753), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -81012,7 +81304,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -81021,85 +81313,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40720] = 14, - ACTIONS(3), 1, + [40648] = 8, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2673), 1, + anon_sym_LF, + ACTIONS(2721), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2723), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2549), 1, + anon_sym_PERCENT, + ACTIONS(2735), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(2675), 5, anon_sym_PIPE_PIPE, - ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(2553), 1, anon_sym_PIPE, - ACTIONS(2555), 1, anon_sym_CARET, - ACTIONS(2557), 1, anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_RPAREN, - ACTIONS(2543), 2, + [40685] = 7, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2673), 1, + anon_sym_LF, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2545), 2, + ACTIONS(2737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2723), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2559), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2561), 2, + ACTIONS(2735), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2563), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40769] = 12, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2723), 1, + anon_sym_LT, + ACTIONS(2675), 7, anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, anon_sym_AMP_AMP, - ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2753), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40720] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2377), 1, + anon_sym_LPAREN2, + ACTIONS(2379), 1, + anon_sym_STAR, + STATE(1110), 1, + sym__type_declarator, + STATE(1538), 1, + sym_ms_based_modifier, + STATE(897), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [40761] = 6, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2735), 4, + ACTIONS(2675), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40814] = 3, - ACTIONS(2571), 1, + [40794] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2673), 1, anon_sym_LF, - ACTIONS(2697), 18, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2675), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -81113,11 +81454,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40841] = 12, - ACTIONS(2571), 1, + [40825] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -81126,9 +81465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, ACTIONS(2755), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -81137,7 +81478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -81146,35 +81487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40886] = 3, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(2675), 1, - anon_sym_LF, - ACTIONS(2677), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40913] = 12, - ACTIONS(2571), 1, + [40870] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -81183,9 +81498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, ACTIONS(2757), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -81194,7 +81511,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -81203,42 +81520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40958] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2369), 1, - sym_identifier, - ACTIONS(2371), 1, - anon_sym_LPAREN2, - ACTIONS(2373), 1, - anon_sym_STAR, - STATE(1107), 1, - sym__type_declarator, - STATE(1535), 1, - sym_ms_based_modifier, - STATE(888), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40999] = 12, - ACTIONS(2571), 1, + [40915] = 12, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, ACTIONS(2725), 1, anon_sym_AMP_AMP, ACTIONS(2727), 1, @@ -81247,9 +81531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2731), 1, anon_sym_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, ACTIONS(2759), 1, anon_sym_LF, - ACTIONS(2719), 2, + ACTIONS(2721), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2733), 2, @@ -81258,7 +81544,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2723), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -81267,25 +81553,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [40960] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SLASH, + ACTIONS(2537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2539), 1, + anon_sym_AMP_AMP, + ACTIONS(2541), 1, + anon_sym_PIPE, + ACTIONS(2543), 1, + anon_sym_CARET, + ACTIONS(2545), 1, + anon_sym_AMP, + ACTIONS(2761), 1, + anon_sym_RPAREN, + ACTIONS(2531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2533), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2549), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2553), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41009] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2241), 1, + sym_primitive_type, + ACTIONS(2763), 1, + sym_identifier, + STATE(736), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2235), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2237), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, [41044] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1070), 1, + STATE(1080), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(888), 2, + STATE(897), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -81301,22 +81650,22 @@ static const uint16_t ts_small_parse_table[] = { [41085] = 7, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1034), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2763), 2, + ACTIONS(2767), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2768), 2, + ACTIONS(2772), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1028), 2, + STATE(1032), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2765), 3, + ACTIONS(2769), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2761), 8, + ACTIONS(2765), 8, anon_sym___based, anon_sym_const, anon_sym_volatile, @@ -81328,10 +81677,10 @@ static const uint16_t ts_small_parse_table[] = { [41119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 2, + ACTIONS(2777), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2771), 13, + ACTIONS(2775), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -81348,10 +81697,10 @@ static const uint16_t ts_small_parse_table[] = { [41142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, + ACTIONS(2781), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2775), 13, + ACTIONS(2779), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -81368,204 +81717,204 @@ static const uint16_t ts_small_parse_table[] = { [41165] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1084), 1, sym__declarator, - STATE(1245), 1, + STATE(1269), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41197] = 9, + [41197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2401), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_COLON, + STATE(901), 1, + sym_enumerator_list, + ACTIONS(2399), 9, anon_sym_LPAREN2, - ACTIONS(2355), 1, anon_sym_STAR, - ACTIONS(2779), 1, - anon_sym_SEMI, - STATE(1060), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [41229] = 9, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [41221] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1046), 1, + STATE(1038), 1, sym__declarator, - STATE(1248), 1, + STATE(1269), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41261] = 9, + [41253] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_EQ, + STATE(358), 1, + sym_compound_statement, + STATE(1079), 1, + sym_parameter_list, + STATE(1254), 1, + aux_sym_declaration_repeat1, + STATE(1095), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1040), 1, + STATE(1044), 1, sym__declarator, - STATE(1274), 1, + STATE(1278), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2403), 1, - anon_sym_LBRACE, - ACTIONS(2781), 1, - anon_sym_COLON, - STATE(903), 1, - sym_enumerator_list, - ACTIONS(2401), 9, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41317] = 9, + [41323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1038), 1, + STATE(1085), 1, sym__declarator, - STATE(1265), 1, + STATE(1250), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41349] = 9, + [41355] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1083), 1, + STATE(1096), 1, sym__declarator, STATE(1248), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41381] = 12, + [41387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, - anon_sym_SEMI, - ACTIONS(2790), 1, - anon_sym_LBRACK, - ACTIONS(2792), 1, - anon_sym_EQ, - STATE(332), 1, - sym_compound_statement, - STATE(1050), 1, - sym_parameter_list, - STATE(1250), 1, - aux_sym_declaration_repeat1, - STATE(1091), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, + ACTIONS(2353), 1, + anon_sym_STAR, + STATE(1109), 1, + sym__declarator, + STATE(1360), 1, + sym_init_declarator, + STATE(1400), 1, + sym_ms_based_modifier, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, [41419] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1085), 1, + STATE(1051), 1, sym__declarator, - STATE(1245), 1, + STATE(1250), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -81578,43 +81927,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(121), 1, anon_sym_LBRACE, - ACTIONS(2784), 1, - anon_sym_COMMA, ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, ACTIONS(2792), 1, - anon_sym_EQ, + anon_sym_LBRACK, ACTIONS(2794), 1, + anon_sym_EQ, + ACTIONS(2796), 1, anon_sym_SEMI, - STATE(173), 1, + STATE(151), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1286), 1, + STATE(1290), 1, aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [41489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1105), 1, + STATE(1087), 1, sym__declarator, - STATE(1357), 1, + STATE(1278), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -81623,199 +81972,303 @@ static const uint16_t ts_small_parse_table[] = { [41521] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2361), 1, anon_sym_STAR, - ACTIONS(2796), 1, + ACTIONS(2798), 1, anon_sym_SEMI, - STATE(1061), 1, + STATE(1056), 1, sym__field_declarator, - STATE(1369), 1, + STATE(1373), 1, sym_ms_based_modifier, - STATE(1132), 5, + STATE(1136), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [41553] = 9, + [41553] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(386), 1, + anon_sym_LBRACE, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_EQ, + ACTIONS(2800), 1, + anon_sym_SEMI, + STATE(374), 1, + sym_compound_statement, + STATE(1079), 1, + sym_parameter_list, + STATE(1242), 1, + aux_sym_declaration_repeat1, + STATE(1095), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41591] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1089), 1, - sym__declarator, - STATE(1265), 1, - sym_init_declarator, - STATE(1395), 1, + ACTIONS(2802), 1, + anon_sym_SEMI, + STATE(1067), 1, + sym__field_declarator, + STATE(1373), 1, sym_ms_based_modifier, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [41585] = 9, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [41623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1084), 1, + STATE(1047), 1, sym__declarator, - STATE(1274), 1, + STATE(1248), 1, sym_init_declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41617] = 9, + [41655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2361), 1, anon_sym_STAR, - ACTIONS(2798), 1, + ACTIONS(2804), 1, anon_sym_SEMI, - STATE(1075), 1, + STATE(1068), 1, sym__field_declarator, - STATE(1369), 1, + STATE(1373), 1, sym_ms_based_modifier, - STATE(1132), 5, + STATE(1136), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [41649] = 12, + [41687] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2784), 1, - anon_sym_COMMA, ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, anon_sym_EQ, - ACTIONS(2800), 1, + ACTIONS(2806), 1, anon_sym_SEMI, - STATE(339), 1, + STATE(353), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1206), 1, + STATE(1264), 1, aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41687] = 12, + [41725] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2377), 1, + anon_sym_LPAREN2, + ACTIONS(2379), 1, + anon_sym_STAR, + STATE(1112), 1, + sym__type_declarator, + STATE(1538), 1, + sym_ms_based_modifier, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [41754] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(380), 1, - anon_sym_LBRACE, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, ACTIONS(2792), 1, - anon_sym_EQ, - ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1079), 1, + sym_parameter_list, + STATE(1095), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2808), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(371), 1, - sym_compound_statement, - STATE(1050), 1, + anon_sym_LBRACE, + anon_sym_EQ, + [41781] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(2792), 1, + anon_sym_LBRACK, + STATE(1079), 1, sym_parameter_list, - STATE(1239), 1, - aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41725] = 8, + ACTIONS(2810), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [41808] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1107), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [41754] = 7, + [41837] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2814), 1, + anon_sym_SEMI, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1050), 1, + ACTIONS(2818), 1, + anon_sym_COLON, + STATE(1140), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1238), 1, + sym_bitfield_clause, + STATE(1239), 1, + aux_sym_field_declaration_repeat1, + STATE(1102), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41872] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2377), 1, + anon_sym_LPAREN2, + ACTIONS(2379), 1, + anon_sym_STAR, + STATE(1117), 1, + sym__type_declarator, + STATE(1538), 1, + sym_ms_based_modifier, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [41901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2822), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2825), 1, + anon_sym_LBRACK, + STATE(1058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2804), 5, + ACTIONS(2820), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [41781] = 5, + anon_sym_COLON, + [41924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(2829), 1, anon_sym___attribute__, - ACTIONS(2810), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(1056), 2, + STATE(1069), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2806), 7, + ACTIONS(2827), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81823,243 +82276,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41804] = 7, + [41947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - sym_identifier, - ACTIONS(2812), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(2792), 1, + anon_sym_LBRACK, + STATE(1079), 1, + sym_parameter_list, + STATE(1095), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2833), 5, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2814), 1, - anon_sym_COLON, - STATE(1226), 1, - sym_gnu_asm_output_operand_list, - STATE(492), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41831] = 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [41974] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1097), 1, + STATE(1134), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [41860] = 8, + [42003] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1117), 1, + STATE(1088), 1, + sym__field_declarator, + STATE(1373), 1, + sym_ms_based_modifier, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [42032] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2351), 1, + anon_sym_LPAREN2, + ACTIONS(2353), 1, + anon_sym_STAR, + STATE(1126), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41889] = 8, + [42061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2359), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2361), 1, anon_sym_STAR, - STATE(1113), 1, - sym__type_declarator, - STATE(1535), 1, + STATE(1141), 1, + sym__field_declarator, + STATE(1373), 1, sym_ms_based_modifier, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [41918] = 8, + STATE(1136), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [42090] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1094), 1, + STATE(1103), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [41947] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - anon_sym___attribute__, - ACTIONS(2818), 1, - anon_sym_LBRACK, - STATE(1062), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2816), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41970] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - STATE(1091), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2820), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [41997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 1, - anon_sym_LBRACK, - STATE(1058), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2822), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [42020] = 8, + [42119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1103), 1, + STATE(1101), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [42049] = 11, + [42148] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2829), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2831), 1, - anon_sym_SEMI, - ACTIONS(2833), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2835), 1, + ACTIONS(2818), 1, anon_sym_COLON, - STATE(1136), 1, + ACTIONS(2835), 1, + anon_sym_SEMI, + STATE(1140), 1, sym_parameter_list, - STATE(1234), 1, - sym_bitfield_clause, - STATE(1235), 1, + STATE(1280), 1, aux_sym_field_declaration_repeat1, - STATE(1098), 2, + STATE(1281), 1, + sym_bitfield_clause, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42084] = 11, + [42183] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2829), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2833), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2835), 1, + ACTIONS(2818), 1, anon_sym_COLON, ACTIONS(2837), 1, anon_sym_SEMI, - STATE(1136), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1290), 1, + STATE(1295), 1, sym_bitfield_clause, - STATE(1291), 1, + STATE(1301), 1, aux_sym_field_declaration_repeat1, - STATE(1098), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42119] = 5, + [42218] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym___attribute__, ACTIONS(2844), 1, anon_sym_LBRACK, - STATE(1062), 2, + STATE(1069), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, ACTIONS(2839), 7, @@ -82070,39 +82488,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [42142] = 8, + [42241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2351), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2355), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1080), 1, - sym__field_declarator, - STATE(1369), 1, + STATE(1105), 1, + sym__type_declarator, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [42171] = 7, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [42270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(1428), 1, + anon_sym___based, + ACTIONS(2045), 1, + sym_identifier, + ACTIONS(2351), 1, + anon_sym_LPAREN2, + ACTIONS(2353), 1, + anon_sym_STAR, + STATE(1123), 1, + sym__declarator, + STATE(1400), 1, + sym_ms_based_modifier, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [42299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, sym_identifier, - ACTIONS(2814), 1, - anon_sym_COLON, ACTIONS(2846), 1, anon_sym_RPAREN, - STATE(1292), 1, + ACTIONS(2848), 1, + anon_sym_COLON, + STATE(1231), 1, sym_gnu_asm_output_operand_list, - STATE(492), 2, + STATE(497), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(93), 5, @@ -82111,275 +82550,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42198] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2041), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_LPAREN2, - ACTIONS(2331), 1, - anon_sym_STAR, - STATE(1127), 1, - sym__declarator, - STATE(1395), 1, - sym_ms_based_modifier, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [42227] = 8, + [42326] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1122), 1, - sym__declarator, - STATE(1395), 1, + STATE(1098), 1, + sym__type_declarator, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1126), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [42256] = 8, + STATE(1154), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [42355] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1119), 1, + STATE(1131), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42285] = 8, + [42384] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1108), 1, + STATE(1113), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [42314] = 8, + [42413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2331), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1124), 1, + STATE(1121), 1, sym__declarator, - STATE(1395), 1, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1126), 5, + STATE(1130), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42343] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - STATE(1091), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2848), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [42370] = 8, + [42442] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2045), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2351), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2353), 1, anon_sym_STAR, - STATE(1110), 1, - sym__type_declarator, - STATE(1535), 1, + STATE(1128), 1, + sym__declarator, + STATE(1400), 1, sym_ms_based_modifier, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [42399] = 7, + STATE(1130), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [42471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(1743), 1, + sym_identifier, + ACTIONS(2848), 1, + anon_sym_COLON, + ACTIONS(2850), 1, + anon_sym_RPAREN, + STATE(1252), 1, + sym_gnu_asm_output_operand_list, + STATE(497), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, + anon_sym___attribute__, + ACTIONS(2854), 1, anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - STATE(1091), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2850), 5, + STATE(1059), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2852), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [42426] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2369), 1, - sym_identifier, - ACTIONS(2371), 1, - anon_sym_LPAREN2, - ACTIONS(2373), 1, - anon_sym_STAR, - STATE(1102), 1, - sym__type_declarator, - STATE(1535), 1, - sym_ms_based_modifier, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [42455] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2351), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_LPAREN2, - ACTIONS(2355), 1, - anon_sym_STAR, - STATE(1137), 1, - sym__field_declarator, - STATE(1369), 1, - sym_ms_based_modifier, - STATE(1132), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [42484] = 11, + [42521] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2829), 1, - anon_sym_COMMA, - ACTIONS(2833), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_COLON, - ACTIONS(2852), 1, - anon_sym_SEMI, - STATE(1136), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1273), 1, - aux_sym_field_declaration_repeat1, - STATE(1276), 1, - sym_bitfield_clause, - STATE(1098), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42519] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym___based, - ACTIONS(2369), 1, - sym_identifier, - ACTIONS(2371), 1, - anon_sym_LPAREN2, - ACTIONS(2373), 1, - anon_sym_STAR, - STATE(1130), 1, - sym__type_declarator, - STATE(1535), 1, - sym_ms_based_modifier, - STATE(1144), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + ACTIONS(2856), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, [42548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1428), 1, anon_sym___based, - ACTIONS(2369), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2371), 1, + ACTIONS(2377), 1, anon_sym_LPAREN2, - ACTIONS(2373), 1, + ACTIONS(2379), 1, anon_sym_STAR, - STATE(1099), 1, + STATE(1114), 1, sym__type_declarator, - STATE(1535), 1, + STATE(1538), 1, sym_ms_based_modifier, - STATE(1144), 5, + STATE(1154), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -82390,16 +82739,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1136), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1098), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2854), 4, + ACTIONS(2858), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -82407,13 +82756,13 @@ static const uint16_t ts_small_parse_table[] = { [42603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - STATE(1187), 1, + STATE(1201), 1, sym_gnu_asm_output_operand, - STATE(1445), 1, + STATE(1450), 1, sym_string_literal, - ACTIONS(2856), 2, + ACTIONS(2860), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(93), 5, @@ -82422,156 +82771,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42627] = 9, + [42627] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_COLON, - STATE(1136), 1, + ACTIONS(2794), 1, + anon_sym_EQ, + STATE(1079), 1, sym_parameter_list, - STATE(1338), 1, - sym_bitfield_clause, - ACTIONS(2860), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1098), 2, + STATE(1254), 1, + aux_sym_declaration_repeat1, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42657] = 7, + [42659] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(1136), 1, + ACTIONS(2794), 1, + anon_sym_EQ, + ACTIONS(2806), 1, + anon_sym_SEMI, + STATE(1079), 1, sym_parameter_list, - STATE(1098), 2, + STATE(1264), 1, + aux_sym_declaration_repeat1, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2862), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [42683] = 7, + [42691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2866), 1, anon_sym_LBRACK, - STATE(1136), 1, - sym_parameter_list, - STATE(1098), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2864), 4, + ACTIONS(2864), 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, [42709] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2784), 1, - anon_sym_COMMA, ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, anon_sym_EQ, - ACTIONS(2800), 1, + ACTIONS(2796), 1, anon_sym_SEMI, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1206), 1, + STATE(1290), 1, aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42741] = 10, + [42741] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2792), 1, - anon_sym_EQ, - ACTIONS(2794), 1, - anon_sym_SEMI, - STATE(1050), 1, + ACTIONS(2818), 1, + anon_sym_COLON, + STATE(1140), 1, sym_parameter_list, - STATE(1286), 1, - aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1352), 1, + sym_bitfield_clause, + ACTIONS(2868), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42773] = 10, + [42771] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2792), 1, - anon_sym_EQ, - ACTIONS(2802), 1, - anon_sym_SEMI, - STATE(1050), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1239), 1, - aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42805] = 7, + ACTIONS(2870), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [42797] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1136), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1098), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2866), 4, + ACTIONS(2872), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [42831] = 3, + [42823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - ACTIONS(2868), 9, + ACTIONS(2874), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82581,49 +82926,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [42849] = 3, + [42841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2872), 9, - anon_sym_COMMA, + STATE(1187), 1, + sym_gnu_asm_input_operand, + STATE(1494), 1, + sym_string_literal, + ACTIONS(2878), 2, 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, - [42867] = 10, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42865] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2786), 1, - anon_sym_LPAREN2, ACTIONS(2788), 1, - anon_sym_SEMI, - ACTIONS(2790), 1, + anon_sym_LPAREN2, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2792), 1, - anon_sym_EQ, - STATE(1050), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1250), 1, - aux_sym_declaration_repeat1, - STATE(1091), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42899] = 3, + ACTIONS(2882), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [42891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(2886), 1, anon_sym_LBRACK, - ACTIONS(2876), 9, + ACTIONS(2884), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82633,52 +82978,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [42917] = 5, + [42909] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2882), 1, + ACTIONS(2890), 1, anon_sym_LBRACK, STATE(1058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2880), 6, + ACTIONS(2888), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [42939] = 6, + [42931] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(1181), 1, - sym_gnu_asm_input_operand, - STATE(1489), 1, - sym_string_literal, - ACTIONS(2884), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + ACTIONS(2794), 1, + anon_sym_EQ, + ACTIONS(2800), 1, + anon_sym_SEMI, + STATE(1079), 1, + sym_parameter_list, + STATE(1242), 1, + aux_sym_declaration_repeat1, + STATE(1095), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, [42963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, - sym_identifier, ACTIONS(2892), 1, + sym_identifier, + ACTIONS(2896), 1, sym_system_lib_string, - STATE(1496), 2, + STATE(1500), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2890), 5, + ACTIONS(2894), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -82689,32 +83038,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(2896), 1, + ACTIONS(2900), 1, anon_sym_SEMI, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1229), 1, + STATE(1233), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(2904), 1, sym_identifier, - ACTIONS(2902), 1, + ACTIONS(2906), 1, sym_system_lib_string, - STATE(1446), 2, + STATE(1447), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2890), 5, + ACTIONS(2894), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -82725,16 +83074,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2904), 3, + ACTIONS(2908), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -82743,19 +83092,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2906), 1, + ACTIONS(2910), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1244), 1, + STATE(1246), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43088] = 5, @@ -82763,12 +83112,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2914), 1, anon_sym_LBRACK, STATE(1058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2908), 5, + ACTIONS(2912), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82779,91 +83128,91 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2912), 1, + ACTIONS(2916), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1207), 1, + STATE(1211), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 1, - sym_identifier, - ACTIONS(2916), 1, - sym_system_lib_string, - STATE(1469), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2890), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [43159] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2918), 1, sym_identifier, ACTIONS(2920), 1, sym_system_lib_string, - STATE(1473), 2, + STATE(1477), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2890), 5, + ACTIONS(2894), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [43180] = 9, + [43159] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, ACTIONS(2922), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1293), 1, + STATE(1297), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, + [43188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2924), 1, + sym_identifier, + ACTIONS(2926), 1, + sym_system_lib_string, + STATE(1473), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2894), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, [43209] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2924), 1, + ACTIONS(2928), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1225), 1, + STATE(1229), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43238] = 7, @@ -82871,16 +83220,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2926), 3, + ACTIONS(2930), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -82889,18 +83238,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, - anon_sym_LBRACK, ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, anon_sym_EQ, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - ACTIONS(2928), 2, + ACTIONS(2932), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43290] = 7, @@ -82908,16 +83257,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2930), 3, + ACTIONS(2934), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -82926,16 +83275,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2932), 3, + ACTIONS(2936), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -82944,19 +83293,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2934), 1, + ACTIONS(2938), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1283), 1, + STATE(1285), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43369] = 9, @@ -82964,19 +83313,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2936), 1, + ACTIONS(2940), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1205), 1, + STATE(1209), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43398] = 9, @@ -82984,27 +83333,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2938), 1, + ACTIONS(2942), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1227), 1, + STATE(1232), 1, aux_sym_type_definition_repeat2, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2940), 7, + ACTIONS(2944), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83015,9 +83364,9 @@ static const uint16_t ts_small_parse_table[] = { [43443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2944), 7, + ACTIONS(2948), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83030,24 +83379,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - ACTIONS(2948), 2, + ACTIONS(2952), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43483] = 4, ACTIONS(3), 1, sym_comment, - STATE(1194), 1, + STATE(1198), 1, sym_string_literal, - ACTIONS(2950), 2, + ACTIONS(2954), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(93), 5, @@ -83059,11 +83408,11 @@ static const uint16_t ts_small_parse_table[] = { [43501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, STATE(1228), 1, sym_gnu_asm_input_operand, - STATE(1489), 1, + STATE(1494), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -83074,11 +83423,11 @@ static const uint16_t ts_small_parse_table[] = { [43521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - STATE(1241), 1, + STATE(1244), 1, sym_gnu_asm_output_operand, - STATE(1445), 1, + STATE(1450), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -83091,17 +83440,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(380), 1, + ACTIONS(386), 1, anon_sym_LBRACE, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, STATE(352), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43567] = 7, @@ -83109,16 +83458,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - ACTIONS(2952), 2, + ACTIONS(2956), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43591] = 8, @@ -83128,23 +83477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(342), 1, + STATE(336), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2954), 7, + ACTIONS(2958), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83155,9 +83504,9 @@ static const uint16_t ts_small_parse_table[] = { [43633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(2964), 1, anon_sym_LBRACK, - ACTIONS(2958), 7, + ACTIONS(2962), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83172,15 +83521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(362), 1, + STATE(338), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43675] = 5, @@ -83188,12 +83537,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2964), 1, + ACTIONS(2968), 1, anon_sym_LBRACK, STATE(1058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2962), 4, + ACTIONS(2966), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83205,23 +83554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(121), 1, anon_sym_LBRACE, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(157), 1, + STATE(111), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(2966), 7, + ACTIONS(2970), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83232,9 +83581,9 @@ static const uint16_t ts_small_parse_table[] = { [43737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2970), 7, + ACTIONS(2974), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83247,23 +83596,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, + ACTIONS(2978), 1, anon_sym_RPAREN, - STATE(1050), 1, + STATE(1079), 1, sym_parameter_list, - STATE(1091), 2, + STATE(1095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2976), 6, + ACTIONS(2980), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83273,9 +83622,9 @@ static const uint16_t ts_small_parse_table[] = { [43791] = 4, ACTIONS(3), 1, sym_comment, - STATE(1051), 1, + STATE(1072), 1, sym_string_literal, - STATE(1288), 1, + STATE(1292), 1, sym_concatenated_string, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -83288,23 +83637,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - ACTIONS(2980), 1, + ACTIONS(2984), 1, anon_sym_RPAREN, - STATE(1155), 1, + STATE(1157), 1, sym_parameter_list, - STATE(1123), 2, + STATE(1127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2988), 1, anon_sym_LBRACK, - ACTIONS(2982), 6, + ACTIONS(2986), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83314,9 +83663,9 @@ static const uint16_t ts_small_parse_table[] = { [43846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(2986), 6, + ACTIONS(2990), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83326,9 +83675,9 @@ static const uint16_t ts_small_parse_table[] = { [43861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2990), 6, + ACTIONS(2994), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83338,9 +83687,9 @@ static const uint16_t ts_small_parse_table[] = { [43876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2994), 6, + ACTIONS(2998), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83350,9 +83699,9 @@ static const uint16_t ts_small_parse_table[] = { [43891] = 4, ACTIONS(3), 1, sym_comment, - STATE(1064), 1, + STATE(1078), 1, sym_string_literal, - STATE(1223), 1, + STATE(1227), 1, sym_concatenated_string, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -83363,9 +83712,9 @@ static const uint16_t ts_small_parse_table[] = { [43908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(3004), 1, anon_sym_LBRACK, - ACTIONS(2998), 6, + ACTIONS(3002), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83377,23 +83726,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3006), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1098), 2, + STATE(1102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [43946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(3004), 6, + ACTIONS(3008), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83403,9 +83752,9 @@ static const uint16_t ts_small_parse_table[] = { [43961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(3008), 6, + ACTIONS(3012), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83415,135 +83764,139 @@ static const uint16_t ts_small_parse_table[] = { [43976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 1, + ACTIONS(3016), 1, anon_sym_LPAREN2, - STATE(1158), 2, + STATE(1147), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3014), 3, + ACTIONS(3018), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [43992] = 3, + [43992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 1, + ACTIONS(3020), 1, anon_sym_LBRACK, - ACTIONS(3016), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [44006] = 3, + ACTIONS(3023), 1, + anon_sym_EQ, + ACTIONS(3025), 1, + anon_sym_DOT, + STATE(1145), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [44010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3020), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3028), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [44020] = 5, + STATE(1144), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3018), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [44026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3030), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_LBRACK, - STATE(1172), 1, - sym_parameter_list, - ACTIONS(3024), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [44038] = 3, + STATE(1147), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3032), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [44042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3037), 1, anon_sym_LBRACK, - ACTIONS(3028), 5, + ACTIONS(3035), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44052] = 5, + [44056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1436), 1, anon_sym_LBRACK, - ACTIONS(3032), 1, + ACTIONS(3039), 1, anon_sym_EQ, - ACTIONS(3034), 1, + ACTIONS(3041), 1, anon_sym_DOT, - STATE(1161), 3, + STATE(1145), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [44070] = 3, + [44074] = 5, ACTIONS(3), 1, sym_comment, - STATE(1220), 1, - sym_string_literal, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [44084] = 5, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(3045), 1, + anon_sym_LBRACK, + STATE(1169), 1, + sym_parameter_list, + ACTIONS(3043), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [44092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3045), 1, anon_sym_LBRACK, - STATE(1172), 1, + STATE(1169), 1, sym_parameter_list, - ACTIONS(3036), 3, + ACTIONS(3047), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44102] = 3, + [44110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3051), 1, anon_sym_LBRACK, - ACTIONS(3038), 5, + ACTIONS(3049), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44116] = 3, + [44124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, + ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3042), 5, + ACTIONS(3053), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44130] = 3, + [44138] = 3, ACTIONS(3), 1, sym_comment, - STATE(1549), 1, - sym_string_literal, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [44144] = 3, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3057), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [44152] = 3, ACTIONS(3), 1, sym_comment, - STATE(1531), 1, + STATE(1222), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -83551,132 +83904,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44158] = 5, + [44166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3045), 1, anon_sym_LBRACK, - STATE(1172), 1, + STATE(1169), 1, sym_parameter_list, - ACTIONS(3046), 3, + ACTIONS(3061), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44176] = 5, + [44184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3065), 1, anon_sym_LBRACK, - STATE(1172), 1, - sym_parameter_list, - ACTIONS(3048), 3, + ACTIONS(3063), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [44194] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [44198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + STATE(1553), 1, + sym_string_literal, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3045), 1, anon_sym_LBRACK, - STATE(1172), 1, + STATE(1169), 1, sym_parameter_list, - ACTIONS(3050), 3, + ACTIONS(3067), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44212] = 3, + [44230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(3071), 1, anon_sym_LBRACK, - ACTIONS(3052), 5, + ACTIONS(3069), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44226] = 3, + [44244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, + ACTIONS(3075), 1, anon_sym_LBRACK, - ACTIONS(3056), 5, + ACTIONS(3073), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3060), 1, - anon_sym_LPAREN2, - STATE(1140), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3014), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [44256] = 4, + [44258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - STATE(1158), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3064), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [44272] = 3, + ACTIONS(3045), 1, + anon_sym_LBRACK, + STATE(1169), 1, + sym_parameter_list, + ACTIONS(3077), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [44276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(3081), 1, anon_sym_LBRACK, - ACTIONS(3067), 5, + ACTIONS(3079), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44286] = 5, + [44290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2788), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3045), 1, anon_sym_LBRACK, - STATE(1172), 1, + STATE(1169), 1, sym_parameter_list, - ACTIONS(3071), 3, + ACTIONS(3083), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44304] = 5, + [44308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, - anon_sym_LBRACK, - ACTIONS(3076), 1, - anon_sym_EQ, - ACTIONS(3078), 1, - anon_sym_DOT, - STATE(1161), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, + STATE(1541), 1, + sym_string_literal, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, [44322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 5, + ACTIONS(3085), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83685,66 +84034,40 @@ static const uint16_t ts_small_parse_table[] = { [44333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 5, + ACTIONS(3087), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44344] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3085), 1, - sym_identifier, - STATE(905), 1, - sym_field_declaration_list, - STATE(1297), 1, - sym_ms_declspec_modifier, - [44363] = 2, + [44344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 5, + ACTIONS(3089), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44374] = 2, + [44355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 5, + ACTIONS(3091), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44385] = 2, + [44366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 5, + ACTIONS(3093), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44396] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3093), 1, - sym_identifier, - STATE(917), 1, - sym_field_declaration_list, - STATE(1289), 1, - sym_ms_declspec_modifier, - [44415] = 2, + [44377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 5, @@ -83753,25 +84076,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44426] = 2, + [44388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2788), 1, anon_sym_LPAREN2, + ACTIONS(3045), 1, anon_sym_LBRACK, - anon_sym_COLON, - [44437] = 2, + STATE(1169), 1, + sym_parameter_list, + ACTIONS(2956), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 5, + ACTIONS(3097), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44448] = 2, + [44416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2409), 1, + anon_sym_LBRACE, + ACTIONS(3099), 1, + sym_identifier, + STATE(907), 1, + sym_field_declaration_list, + STATE(1294), 1, + sym_ms_declspec_modifier, + [44435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 5, @@ -83780,34 +84119,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [44459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_LBRACK, - STATE(1172), 1, - sym_parameter_list, - ACTIONS(2952), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [44476] = 5, + [44446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, ACTIONS(3105), 1, anon_sym_COLON_COLON, - STATE(1354), 1, + STATE(1358), 1, sym_argument_list, ACTIONS(3103), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, + [44463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2409), 1, + anon_sym_LBRACE, + ACTIONS(3107), 1, + sym_identifier, + STATE(919), 1, + sym_field_declaration_list, + STATE(1300), 1, + sym_ms_declspec_modifier, + [44482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3109), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, [44493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 5, + ACTIONS(3111), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83816,7 +84165,7 @@ static const uint16_t ts_small_parse_table[] = { [44504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 5, + ACTIONS(3113), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83825,1150 +84174,1150 @@ static const uint16_t ts_small_parse_table[] = { [44515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 5, + ACTIONS(3115), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, [44526] = 5, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(3117), 1, anon_sym_LF, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_LPAREN, - ACTIONS(3117), 1, + ACTIONS(3121), 1, sym_preproc_arg, - STATE(1344), 1, + STATE(1332), 1, sym_preproc_params, - [44542] = 4, - ACTIONS(3), 1, + [44542] = 5, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3123), 1, + anon_sym_DQUOTE, + ACTIONS(3125), 1, + aux_sym_string_literal_token1, + ACTIONS(3127), 1, + sym_escape_sequence, + STATE(1185), 1, + aux_sym_string_literal_repeat1, + [44558] = 5, + ACTIONS(2589), 1, sym_comment, ACTIONS(3119), 1, - anon_sym_COMMA, - STATE(1179), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3122), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [44556] = 4, + anon_sym_LPAREN, + ACTIONS(3129), 1, + anon_sym_LF, + ACTIONS(3131), 1, + sym_preproc_arg, + STATE(1314), 1, + sym_preproc_params, + [44574] = 5, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3133), 1, + anon_sym_DQUOTE, + ACTIONS(3135), 1, + aux_sym_string_literal_token1, + ACTIONS(3137), 1, + sym_escape_sequence, + STATE(1199), 1, + aux_sym_string_literal_repeat1, + [44590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - STATE(1179), 1, + STATE(1195), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3126), 2, + ACTIONS(3141), 2, anon_sym_RPAREN, anon_sym_COLON, - [44570] = 4, + [44604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1193), 1, + STATE(1197), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3130), 2, + ACTIONS(3145), 2, anon_sym_RPAREN, anon_sym_COLON, - [44584] = 5, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3134), 1, - aux_sym_string_literal_token1, - ACTIONS(3136), 1, - sym_escape_sequence, - STATE(1201), 1, - aux_sym_string_literal_repeat1, - [44600] = 5, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(3138), 1, - anon_sym_DQUOTE, - ACTIONS(3140), 1, - aux_sym_string_literal_token1, - ACTIONS(3142), 1, - sym_escape_sequence, - STATE(1191), 1, - aux_sym_string_literal_repeat1, - [44616] = 4, + [44618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(1312), 1, + STATE(1313), 1, sym_argument_list, - ACTIONS(3144), 2, + ACTIONS(3147), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [44630] = 4, - ACTIONS(3), 1, + [44632] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3149), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [44644] = 5, - ACTIONS(2571), 1, + ACTIONS(3149), 1, + anon_sym_DQUOTE, + ACTIONS(3151), 1, + aux_sym_string_literal_token1, + ACTIONS(3153), 1, + sym_escape_sequence, + STATE(1207), 1, + aux_sym_string_literal_repeat1, + [44648] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_LPAREN, - ACTIONS(3151), 1, + ACTIONS(3155), 1, anon_sym_LF, - ACTIONS(3153), 1, + ACTIONS(3157), 1, sym_preproc_arg, STATE(1326), 1, - sym_preproc_params, - [44660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 1, - anon_sym_COMMA, - STATE(1180), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3155), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [44674] = 5, - ACTIONS(3), 1, + sym_preproc_params, + [44664] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3157), 1, - sym_identifier, + ACTIONS(3119), 1, + anon_sym_LPAREN, ACTIONS(3159), 1, - anon_sym_COMMA, + anon_sym_LF, ACTIONS(3161), 1, - anon_sym_RBRACE, - STATE(1230), 1, - sym_enumerator, - [44690] = 5, - ACTIONS(2571), 1, + sym_preproc_arg, + STATE(1348), 1, + sym_preproc_params, + [44680] = 5, + ACTIONS(2589), 1, sym_comment, + ACTIONS(3119), 1, + anon_sym_LPAREN, ACTIONS(3163), 1, - anon_sym_DQUOTE, + anon_sym_LF, ACTIONS(3165), 1, - aux_sym_string_literal_token1, - ACTIONS(3167), 1, - sym_escape_sequence, - STATE(1195), 1, - aux_sym_string_literal_repeat1, + sym_preproc_arg, + STATE(1328), 1, + sym_preproc_params, + [44696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, [44706] = 5, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_LPAREN, ACTIONS(3169), 1, anon_sym_LF, ACTIONS(3171), 1, sym_preproc_arg, - STATE(1310), 1, + STATE(1339), 1, sym_preproc_params, - [44722] = 5, - ACTIONS(2571), 1, + [44722] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, - aux_sym_string_literal_token1, - ACTIONS(3167), 1, - sym_escape_sequence, ACTIONS(3173), 1, - anon_sym_DQUOTE, + anon_sym_COMMA, STATE(1195), 1, - aux_sym_string_literal_repeat1, - [44738] = 5, - ACTIONS(2571), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3176), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [44736] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_LPAREN, - ACTIONS(3175), 1, - anon_sym_LF, - ACTIONS(3177), 1, - sym_preproc_arg, - STATE(1330), 1, - sym_preproc_params, - [44754] = 4, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3180), 1, + aux_sym_string_literal_token1, + ACTIONS(3182), 1, + sym_escape_sequence, + STATE(1204), 1, + aux_sym_string_literal_repeat1, + [44752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1197), 1, + STATE(1203), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3179), 2, + ACTIONS(3184), 2, anon_sym_RPAREN, anon_sym_COLON, - [44768] = 4, + [44766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3186), 1, anon_sym_COMMA, - STATE(1199), 1, + STATE(1208), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3183), 2, + ACTIONS(3188), 2, anon_sym_RPAREN, anon_sym_COLON, - [44782] = 5, - ACTIONS(2571), 1, + [44780] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3190), 1, anon_sym_DQUOTE, - ACTIONS(3187), 1, + ACTIONS(3192), 1, aux_sym_string_literal_token1, - ACTIONS(3190), 1, + ACTIONS(3195), 1, sym_escape_sequence, - STATE(1195), 1, + STATE(1199), 1, aux_sym_string_literal_repeat1, - [44798] = 5, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_LPAREN, - ACTIONS(3193), 1, - anon_sym_LF, - ACTIONS(3195), 1, - sym_preproc_arg, - STATE(1306), 1, - sym_preproc_params, - [44814] = 4, + [44796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - STATE(1197), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3200), 2, + STATE(1200), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3201), 2, anon_sym_RPAREN, anon_sym_COLON, - [44828] = 5, + [44810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_LBRACK, - ACTIONS(3202), 1, + ACTIONS(3139), 1, + anon_sym_COMMA, + STATE(1186), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3203), 2, anon_sym_RPAREN, - STATE(1172), 1, - sym_parameter_list, - [44844] = 4, + anon_sym_COLON, + [44824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3207), 1, anon_sym_COMMA, - STATE(1185), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3204), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [44858] = 2, + ACTIONS(3209), 1, + anon_sym_RBRACE, + STATE(1234), 1, + sym_enumerator, + [44840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [44868] = 5, - ACTIONS(2571), 1, + ACTIONS(3211), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3214), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [44854] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3135), 1, aux_sym_string_literal_token1, - ACTIONS(3167), 1, + ACTIONS(3137), 1, sym_escape_sequence, - ACTIONS(3208), 1, + ACTIONS(3216), 1, anon_sym_DQUOTE, - STATE(1195), 1, + STATE(1199), 1, aux_sym_string_literal_repeat1, - [44884] = 5, - ACTIONS(2571), 1, + [44870] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_LPAREN, - ACTIONS(3210), 1, + ACTIONS(3218), 1, anon_sym_LF, - ACTIONS(3212), 1, + ACTIONS(3220), 1, sym_preproc_arg, - STATE(1321), 1, + STATE(1311), 1, sym_preproc_params, - [44900] = 5, - ACTIONS(2571), 1, + [44886] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_LPAREN, - ACTIONS(3214), 1, - anon_sym_LF, - ACTIONS(3216), 1, - sym_preproc_arg, - STATE(1332), 1, - sym_preproc_params, - [44916] = 5, - ACTIONS(2571), 1, + ACTIONS(2788), 1, + anon_sym_LPAREN2, + ACTIONS(3045), 1, + anon_sym_LBRACK, + ACTIONS(3222), 1, + anon_sym_RPAREN, + STATE(1169), 1, + sym_parameter_list, + [44902] = 5, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3218), 1, - anon_sym_DQUOTE, - ACTIONS(3220), 1, + ACTIONS(3135), 1, aux_sym_string_literal_token1, - ACTIONS(3222), 1, + ACTIONS(3137), 1, sym_escape_sequence, - STATE(1189), 1, + ACTIONS(3224), 1, + anon_sym_DQUOTE, + STATE(1199), 1, aux_sym_string_literal_repeat1, + [44918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3186), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3226), 2, + anon_sym_RPAREN, + anon_sym_COLON, [44932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(3224), 1, + ACTIONS(3228), 1, anon_sym_SEMI, - STATE(1271), 1, + STATE(1274), 1, aux_sym_type_definition_repeat2, [44945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_SEMI, - STATE(1218), 1, - aux_sym_declaration_repeat1, + ACTIONS(3232), 1, + anon_sym_RPAREN, + STATE(1296), 1, + aux_sym_parameter_list_repeat1, [44958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(3228), 1, + ACTIONS(3234), 1, anon_sym_SEMI, - STATE(1271), 1, + STATE(1274), 1, aux_sym_type_definition_repeat2, - [44971] = 4, + [44971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3230), 1, + ACTIONS(3236), 3, anon_sym_COMMA, - ACTIONS(3232), 1, anon_sym_RPAREN, - STATE(1217), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [44984] = 4, + anon_sym_COLON, + [44980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2527), 1, anon_sym_COMMA, - ACTIONS(3234), 1, + ACTIONS(3238), 1, anon_sym_RPAREN, - STATE(1284), 1, + STATE(1287), 1, aux_sym_preproc_argument_list_repeat1, - [44997] = 2, + [44993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 3, + ACTIONS(3240), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [45006] = 2, + [45002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 3, + ACTIONS(3242), 1, anon_sym_COMMA, + ACTIONS(3245), 1, anon_sym_RPAREN, - anon_sym_COLON, + STATE(1215), 1, + aux_sym_gnu_asm_goto_list_repeat1, [45015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2172), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_RPAREN, - STATE(1285), 1, + STATE(1288), 1, aux_sym_argument_list_repeat1, [45028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 1, + ACTIONS(2172), 1, anon_sym_COMMA, - ACTIONS(3245), 1, + ACTIONS(3249), 1, anon_sym_RPAREN, - STATE(1213), 1, - aux_sym_gnu_asm_goto_list_repeat1, + STATE(1288), 1, + aux_sym_argument_list_repeat1, [45041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3249), 1, + ACTIONS(3253), 1, anon_sym_RBRACK_RBRACK, - STATE(1242), 1, + STATE(1245), 1, aux_sym_attribute_declaration_repeat1, [45054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(3255), 1, anon_sym_COMMA, - ACTIONS(3251), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - STATE(1285), 1, - aux_sym_argument_list_repeat1, + STATE(1215), 1, + aux_sym_gnu_asm_goto_list_repeat1, [45067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3253), 1, + ACTIONS(3259), 1, anon_sym_SEMI, - STATE(1268), 1, + STATE(1271), 1, aux_sym_field_declaration_repeat1, [45080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3230), 1, - anon_sym_COMMA, - ACTIONS(3255), 1, - anon_sym_RPAREN, - STATE(1213), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [45093] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, + ACTIONS(3261), 1, anon_sym_COMMA, - ACTIONS(3260), 1, + ACTIONS(3264), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1221), 1, aux_sym_declaration_repeat1, - [45106] = 4, + [45093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(3266), 3, anon_sym_COMMA, - ACTIONS(3262), 1, anon_sym_RPAREN, - STATE(1284), 1, - aux_sym_preproc_argument_list_repeat1, - [45119] = 2, + anon_sym_COLON, + [45102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 3, + ACTIONS(2527), 1, anon_sym_COMMA, + ACTIONS(3268), 1, anon_sym_RPAREN, - anon_sym_COLON, - [45128] = 2, + STATE(1287), 1, + aux_sym_preproc_argument_list_repeat1, + [45115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 3, + ACTIONS(3270), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [45137] = 4, + [45124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3272), 1, anon_sym_COMMA, - ACTIONS(3271), 1, + ACTIONS(3275), 1, anon_sym_RPAREN, - STATE(1222), 1, + STATE(1225), 1, aux_sym_generic_expression_repeat1, - [45150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_COLON, - ACTIONS(2846), 1, - anon_sym_RPAREN, - STATE(1292), 1, - sym_gnu_asm_output_operand_list, - [45163] = 4, + [45137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, + ACTIONS(2401), 1, anon_sym_LBRACE, - ACTIONS(3273), 1, + ACTIONS(3277), 1, sym_identifier, - STATE(919), 1, + STATE(913), 1, sym_enumerator_list, - [45176] = 4, + [45150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, - anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(1271), 1, - aux_sym_type_definition_repeat2, - [45189] = 4, + ACTIONS(2848), 1, + anon_sym_COLON, + ACTIONS(2850), 1, + anon_sym_RPAREN, + STATE(1252), 1, + sym_gnu_asm_output_operand_list, + [45163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3279), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3279), 1, anon_sym_COLON, - STATE(1249), 1, - sym_gnu_asm_input_operand_list, - [45202] = 4, + [45172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2898), 1, anon_sym_COMMA, ACTIONS(3281), 1, anon_sym_SEMI, - STATE(1271), 1, + STATE(1274), 1, aux_sym_type_definition_repeat2, - [45215] = 2, + [45185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3283), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [45224] = 4, + [45194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, - anon_sym_COMMA, ACTIONS(3285), 1, - anon_sym_SEMI, - STATE(1271), 1, - aux_sym_type_definition_repeat2, - [45237] = 4, + anon_sym_RPAREN, + ACTIONS(3287), 1, + anon_sym_COLON, + STATE(1293), 1, + sym_gnu_asm_input_operand_list, + [45207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(2898), 1, anon_sym_COMMA, ACTIONS(3289), 1, - anon_sym_RBRACE, - STATE(1231), 1, - aux_sym_enumerator_list_repeat1, - [45250] = 4, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_type_definition_repeat2, + [45220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(3293), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_enumerator_list_repeat1, - [45263] = 3, + ACTIONS(3291), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_type_definition_repeat2, + [45233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_EQ, - ACTIONS(3295), 2, + ACTIONS(3293), 1, anon_sym_COMMA, + ACTIONS(3295), 1, anon_sym_RBRACE, - [45274] = 2, + STATE(1267), 1, + aux_sym_enumerator_list_repeat1, + [45246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 3, + ACTIONS(2188), 1, anon_sym_COMMA, + ACTIONS(3297), 1, anon_sym_RPAREN, - anon_sym_COLON, - [45283] = 4, + STATE(1225), 1, + aux_sym_generic_expression_repeat1, + [45259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_COMMA, ACTIONS(3301), 1, - anon_sym_SEMI, - STATE(1216), 1, - aux_sym_field_declaration_repeat1, - [45296] = 4, + anon_sym_EQ, + ACTIONS(3299), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [45270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2786), 1, anon_sym_COMMA, ACTIONS(3303), 1, anon_sym_SEMI, - STATE(1268), 1, - aux_sym_field_declaration_repeat1, - [45309] = 4, + STATE(1221), 1, + aux_sym_declaration_repeat1, + [45283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2812), 1, anon_sym_COMMA, ACTIONS(3305), 1, anon_sym_SEMI, - STATE(1218), 1, - aux_sym_declaration_repeat1, - [45322] = 4, + STATE(1220), 1, + aux_sym_field_declaration_repeat1, + [45296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2812), 1, anon_sym_COMMA, ACTIONS(3307), 1, - anon_sym_RPAREN, - STATE(1222), 1, - aux_sym_generic_expression_repeat1, - [45335] = 4, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_field_declaration_repeat1, + [45309] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3309), 1, anon_sym_RPAREN, ACTIONS(3311), 1, anon_sym_COLON, - STATE(1540), 1, + STATE(1547), 1, sym_gnu_asm_goto_list, - [45348] = 4, + [45322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, ACTIONS(3313), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1221), 1, aux_sym_declaration_repeat1, - [45361] = 4, + [45335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(3315), 1, + anon_sym_SEMI, + STATE(1221), 1, + aux_sym_declaration_repeat1, + [45348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3293), 1, + ACTIONS(3317), 1, anon_sym_RBRACE, STATE(1309), 1, sym_enumerator, - [45374] = 2, + [45361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 3, + ACTIONS(3319), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [45383] = 4, + [45370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3321), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(3324), 1, anon_sym_RBRACK_RBRACK, - STATE(1242), 1, + STATE(1245), 1, aux_sym_attribute_declaration_repeat1, + [45383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_type_definition_repeat2, [45396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2172), 1, anon_sym_COMMA, - ACTIONS(2155), 1, + ACTIONS(2174), 1, anon_sym_RPAREN, - STATE(1212), 1, + STATE(1216), 1, aux_sym_argument_list_repeat1, [45409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, - anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_SEMI, - STATE(1271), 1, - aux_sym_type_definition_repeat2, - [45422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3324), 1, + ACTIONS(3328), 1, anon_sym_SEMI, - STATE(1236), 1, + STATE(1237), 1, aux_sym_declaration_repeat1, - [45435] = 4, + [45422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3330), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1210), 1, aux_sym_parameter_list_repeat1, - [45448] = 4, + [45435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3330), 1, + ACTIONS(3332), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1259), 1, aux_sym_declaration_repeat1, + [45448] = 4, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_LF, + STATE(1000), 1, + sym_preproc_argument_list, [45461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_SEMI, + ACTIONS(3287), 1, + anon_sym_COLON, + ACTIONS(3336), 1, + anon_sym_RPAREN, STATE(1261), 1, - aux_sym_declaration_repeat1, + sym_gnu_asm_input_operand_list, [45474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_RPAREN, - ACTIONS(3336), 1, - anon_sym_COLON, - STATE(1260), 1, - sym_gnu_asm_clobber_list, + ACTIONS(2261), 1, + anon_sym_RBRACE, + ACTIONS(3338), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_initializer_list_repeat1, [45487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(3341), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1221), 1, aux_sym_declaration_repeat1, [45500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_RBRACE, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_COMMA, - STATE(1251), 1, - aux_sym_initializer_list_repeat1, - [45513] = 4, - ACTIONS(2569), 1, - anon_sym_LPAREN2, - ACTIONS(2571), 1, + ACTIONS(3345), 1, + anon_sym_RPAREN, + STATE(1262), 1, + aux_sym_preproc_params_repeat1, + [45513] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, - anon_sym_LF, - STATE(994), 1, - sym_preproc_argument_list, - [45526] = 4, + ACTIONS(3347), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [45522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3345), 1, + ACTIONS(3349), 1, anon_sym_RBRACK_RBRACK, - STATE(1242), 1, + STATE(1245), 1, aux_sym_attribute_declaration_repeat1, - [45539] = 4, + [45535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(2172), 1, anon_sym_COMMA, - ACTIONS(3349), 1, + ACTIONS(2182), 1, anon_sym_RPAREN, - STATE(1279), 1, - aux_sym_preproc_params_repeat1, - [45552] = 4, + STATE(1217), 1, + aux_sym_argument_list_repeat1, + [45548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(2786), 1, anon_sym_COMMA, ACTIONS(3351), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_preproc_params_repeat1, - [45565] = 4, - ACTIONS(2569), 1, + anon_sym_SEMI, + STATE(1221), 1, + aux_sym_declaration_repeat1, + [45561] = 4, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LF, - STATE(994), 1, + STATE(1000), 1, sym_preproc_argument_list, - [45578] = 2, + [45574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(3355), 1, + anon_sym_RPAREN, + ACTIONS(3357), 1, + anon_sym_COLON, + STATE(1240), 1, + sym_gnu_asm_clobber_list, [45587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(3343), 1, anon_sym_COMMA, - ACTIONS(2163), 1, + ACTIONS(3359), 1, anon_sym_RPAREN, - STATE(1215), 1, - aux_sym_argument_list_repeat1, + STATE(1282), 1, + aux_sym_preproc_params_repeat1, [45600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 1, + ACTIONS(3311), 1, anon_sym_COLON, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_RPAREN, - STATE(1238), 1, - sym_gnu_asm_clobber_list, + STATE(1527), 1, + sym_gnu_asm_goto_list, [45613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3359), 1, - anon_sym_RPAREN, - STATE(1517), 1, - sym_gnu_asm_goto_list, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(3363), 1, + anon_sym_SEMI, + STATE(1221), 1, + aux_sym_declaration_repeat1, [45626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3361), 1, + ACTIONS(3365), 1, anon_sym_SEMI, - STATE(1218), 1, - aux_sym_declaration_repeat1, + STATE(1271), 1, + aux_sym_field_declaration_repeat1, [45639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3363), 1, + ACTIONS(3367), 1, anon_sym_RBRACK_RBRACK, - STATE(1282), 1, + STATE(1286), 1, aux_sym_attribute_declaration_repeat1, [45652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(3317), 1, + anon_sym_RBRACE, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3365), 1, - anon_sym_RPAREN, - STATE(1277), 1, - aux_sym_parameter_list_repeat1, + STATE(1289), 1, + aux_sym_enumerator_list_repeat1, [45665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2149), 1, anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_SEMI, - STATE(1268), 1, - aux_sym_field_declaration_repeat1, + ACTIONS(2151), 1, + anon_sym_RBRACE, + STATE(1276), 1, + aux_sym_initializer_list_repeat1, [45678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(3369), 1, - anon_sym_SEMI, - STATE(1247), 1, - aux_sym_declaration_repeat1, - [45691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(2151), 1, - anon_sym_RBRACE, - STATE(1295), 1, - aux_sym_initializer_list_repeat1, - [45704] = 3, + ACTIONS(3371), 1, + anon_sym_SEMI, + STATE(1241), 1, + aux_sym_declaration_repeat1, + [45691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3375), 1, anon_sym_RPAREN, - ACTIONS(3371), 2, + ACTIONS(3373), 2, anon_sym_DOT_DOT_DOT, sym_identifier, + [45702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3380), 1, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_field_declaration_repeat1, [45715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3378), 1, + ACTIONS(3382), 1, anon_sym_SEMI, - STATE(1268), 1, + STATE(1271), 1, aux_sym_field_declaration_repeat1, [45728] = 4, - ACTIONS(2569), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3384), 1, anon_sym_LF, - STATE(994), 1, + STATE(1000), 1, sym_preproc_argument_list, [45741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - ACTIONS(3382), 1, + ACTIONS(3389), 1, anon_sym_SEMI, - STATE(1268), 1, - aux_sym_field_declaration_repeat1, + STATE(1274), 1, + aux_sym_type_definition_repeat2, [45754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3255), 1, anon_sym_COMMA, - ACTIONS(3387), 1, - anon_sym_SEMI, - STATE(1271), 1, - aux_sym_type_definition_repeat2, + ACTIONS(3391), 1, + anon_sym_RPAREN, + STATE(1219), 1, + aux_sym_gnu_asm_goto_list_repeat1, [45767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, - anon_sym_LBRACE, - ACTIONS(3389), 1, - sym_identifier, - STATE(919), 1, - sym_enumerator_list, + ACTIONS(1482), 1, + anon_sym_RBRACE, + ACTIONS(3393), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_initializer_list_repeat1, [45780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, - anon_sym_SEMI, - STATE(1268), 1, - aux_sym_field_declaration_repeat1, + ACTIONS(2401), 1, + anon_sym_LBRACE, + ACTIONS(3395), 1, + sym_identifier, + STATE(913), 1, + sym_enumerator_list, [45793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3397), 1, anon_sym_SEMI, - STATE(1287), 1, + STATE(1291), 1, aux_sym_declaration_repeat1, [45806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 3, + ACTIONS(3399), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, [45815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3397), 1, + ACTIONS(3401), 1, anon_sym_SEMI, - STATE(1264), 1, + STATE(1271), 1, aux_sym_field_declaration_repeat1, [45828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RPAREN, - STATE(1277), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(3403), 1, + anon_sym_SEMI, + STATE(1265), 1, + aux_sym_field_declaration_repeat1, [45841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3405), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_RPAREN, + STATE(1282), 1, + aux_sym_preproc_params_repeat1, + [45854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3404), 1, + ACTIONS(3410), 1, anon_sym_RBRACE, STATE(1309), 1, sym_enumerator, - [45854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3406), 1, - anon_sym_COMMA, - ACTIONS(3409), 1, - anon_sym_RPAREN, - STATE(1279), 1, - aux_sym_preproc_params_repeat1, [45867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3411), 1, + ACTIONS(3412), 1, anon_sym_RBRACK_RBRACK, - STATE(1253), 1, + STATE(1257), 1, aux_sym_attribute_declaration_repeat1, [45880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_enumerator_list_repeat1, + ACTIONS(3414), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_type_definition_repeat2, [45893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3418), 1, + ACTIONS(3416), 1, anon_sym_RBRACK_RBRACK, - STATE(1242), 1, + STATE(1245), 1, aux_sym_attribute_declaration_repeat1, [45906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2625), 1, + anon_sym_RPAREN, + ACTIONS(3418), 1, anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_SEMI, - STATE(1271), 1, - aux_sym_type_definition_repeat2, + STATE(1287), 1, + aux_sym_preproc_argument_list_repeat1, [45919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, + ACTIONS(2210), 1, anon_sym_RPAREN, - ACTIONS(3422), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - STATE(1284), 1, - aux_sym_preproc_argument_list_repeat1, + STATE(1288), 1, + aux_sym_argument_list_repeat1, [45932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_RPAREN, - ACTIONS(3425), 1, + ACTIONS(3424), 1, anon_sym_COMMA, - STATE(1285), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3427), 1, + anon_sym_RBRACE, + STATE(1289), 1, + aux_sym_enumerator_list_repeat1, [45945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3429), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1221), 1, aux_sym_declaration_repeat1, [45958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - ACTIONS(3430), 1, + ACTIONS(3431), 1, anon_sym_SEMI, - STATE(1218), 1, + STATE(1221), 1, aux_sym_declaration_repeat1, [45971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2846), 1, anon_sym_RPAREN, - ACTIONS(2814), 1, + ACTIONS(2848), 1, anon_sym_COLON, - STATE(1226), 1, + STATE(1231), 1, sym_gnu_asm_output_operand_list, [45984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - sym_identifier, - STATE(918), 1, - sym_field_declaration_list, + ACTIONS(3357), 1, + anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_RPAREN, + STATE(1263), 1, + sym_gnu_asm_clobber_list, [45997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_COMMA, - ACTIONS(3434), 1, - anon_sym_SEMI, - STATE(1270), 1, - aux_sym_field_declaration_repeat1, + ACTIONS(2409), 1, + anon_sym_LBRACE, + ACTIONS(3435), 1, + sym_identifier, + STATE(915), 1, + sym_field_declaration_list, [46010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3436), 1, + ACTIONS(3437), 1, anon_sym_SEMI, - STATE(1268), 1, + STATE(1272), 1, aux_sym_field_declaration_repeat1, [46023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3439), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, anon_sym_RPAREN, - STATE(1259), 1, - sym_gnu_asm_input_operand_list, + STATE(1296), 1, + aux_sym_parameter_list_repeat1, [46036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_SEMI, - STATE(1271), 1, + STATE(1274), 1, aux_sym_type_definition_repeat2, [46049] = 4, - ACTIONS(2569), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_LF, - STATE(994), 1, + STATE(1000), 1, sym_preproc_argument_list, [46062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1442), 1, - anon_sym_RBRACE, - ACTIONS(3444), 1, - anon_sym_COMMA, - STATE(1251), 1, - aux_sym_initializer_list_repeat1, - [46075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3446), 1, + ACTIONS(3448), 1, anon_sym_RBRACK_RBRACK, - STATE(1214), 1, + STATE(1218), 1, aux_sym_attribute_declaration_repeat1, - [46088] = 4, + [46075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2409), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3450), 1, sym_identifier, - STATE(900), 1, + STATE(905), 1, sym_field_declaration_list, + [46088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_field_declaration_repeat1, [46101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_LPAREN2, [46111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(1559), 1, + STATE(1562), 1, sym_parenthesized_expression, [46121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(198), 1, sym_parenthesized_expression, [46131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(2210), 2, anon_sym_COMMA, anon_sym_RPAREN, [46139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 2, + ACTIONS(3408), 2, anon_sym_COMMA, anon_sym_RPAREN, [46147] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3458), 2, + ACTIONS(3462), 2, anon_sym_LF, sym_preproc_arg, [46155] = 3, @@ -84976,152 +85325,152 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(242), 1, sym_compound_statement, [46165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 2, + ACTIONS(3427), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46173] = 3, - ACTIONS(2571), 1, + [46181] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3464), 1, anon_sym_LF, - ACTIONS(3462), 1, + ACTIONS(3466), 1, sym_preproc_arg, - [46183] = 3, + [46191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(334), 1, - anon_sym_LBRACE, - STATE(305), 1, - sym_compound_statement, - [46193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(124), 1, + STATE(195), 1, sym_parenthesized_expression, - [46203] = 2, + [46201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 2, + ACTIONS(3468), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [46211] = 3, - ACTIONS(2571), 1, + anon_sym_RBRACK_RBRACK, + [46209] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3470), 1, anon_sym_LF, - ACTIONS(3466), 1, + ACTIONS(3472), 1, sym_preproc_arg, - [46221] = 3, + [46219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(334), 1, + anon_sym_LBRACE, + STATE(276), 1, + sym_compound_statement, + [46229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, sym_identifier, STATE(1309), 1, sym_enumerator, - [46231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, [46239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3472), 1, + ACTIONS(3476), 1, anon_sym_LPAREN2, [46249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3478), 1, sym_identifier, - STATE(1262), 1, + STATE(1266), 1, sym_attribute, [46259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(121), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_compound_statement, + [46269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(1318), 1, + STATE(1376), 1, sym_parenthesized_expression, - [46269] = 2, - ACTIONS(2571), 1, + [46279] = 2, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3476), 2, + ACTIONS(3480), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [46277] = 3, + [46287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(1307), 1, + STATE(1319), 1, sym_parenthesized_expression, - [46287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 1, - anon_sym_LBRACE, - STATE(86), 1, - sym_compound_statement, [46297] = 3, - ACTIONS(2571), 1, - sym_comment, - ACTIONS(3478), 1, - anon_sym_LF, - ACTIONS(3480), 1, - sym_preproc_arg, - [46307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 1, - sym_identifier, - STATE(1280), 1, - sym_attribute, - [46317] = 3, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3482), 1, anon_sym_LF, ACTIONS(3484), 1, sym_preproc_arg, - [46327] = 3, + [46307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(1423), 1, + STATE(1315), 1, sym_parenthesized_expression, - [46337] = 3, - ACTIONS(2571), 1, + [46317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 1, + sym_identifier, + STATE(1284), 1, + sym_attribute, + [46327] = 3, + ACTIONS(2589), 1, sym_comment, ACTIONS(3486), 1, anon_sym_LF, ACTIONS(3488), 1, sym_preproc_arg, - [46347] = 3, - ACTIONS(2571), 1, + [46337] = 2, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3490), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [46345] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_LF, ACTIONS(3492), 1, + anon_sym_LF, + ACTIONS(3494), 1, sym_preproc_arg, - [46357] = 2, - ACTIONS(2571), 1, + [46355] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, + ACTIONS(3458), 1, + anon_sym_LPAREN2, + STATE(1439), 1, + sym_parenthesized_expression, [46365] = 3, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3496), 1, anon_sym_LF, @@ -85130,248 +85479,248 @@ static const uint16_t ts_small_parse_table[] = { [46375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2186), 2, anon_sym_RPAREN, anon_sym_SEMI, [46383] = 3, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3500), 1, anon_sym_LF, ACTIONS(3502), 1, sym_preproc_arg, [46393] = 3, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3504), 1, anon_sym_LF, ACTIONS(3506), 1, sym_preproc_arg, - [46403] = 3, - ACTIONS(2571), 1, + [46403] = 2, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LF, - ACTIONS(3510), 1, - sym_preproc_arg, - [46413] = 3, + ACTIONS(3508), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [46411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(150), 1, sym_parenthesized_expression, - [46423] = 3, - ACTIONS(2571), 1, + [46421] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3510), 1, anon_sym_LF, - ACTIONS(3514), 1, + ACTIONS(3512), 1, sym_preproc_arg, - [46433] = 3, + [46431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(152), 1, sym_parenthesized_expression, - [46443] = 3, + [46441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - STATE(1436), 1, - sym_parenthesized_expression, - [46453] = 2, - ACTIONS(2571), 1, + ACTIONS(2261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46449] = 3, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3516), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [46461] = 2, - ACTIONS(2571), 1, + ACTIONS(3514), 1, + anon_sym_LF, + ACTIONS(3516), 1, + sym_preproc_arg, + [46459] = 2, + ACTIONS(2589), 1, sym_comment, ACTIONS(3518), 2, anon_sym_LF, sym_preproc_arg, - [46469] = 2, + [46467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 2, + ACTIONS(2279), 2, anon_sym_COMMA, anon_sym_RBRACE, - [46477] = 2, + [46475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3460), 1, + anon_sym_LPAREN2, + STATE(179), 1, + sym_parenthesized_expression, [46485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(1537), 1, + STATE(1540), 1, sym_argument_list, [46495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(380), 1, + ACTIONS(386), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(248), 1, sym_compound_statement, [46505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3520), 2, anon_sym_COMMA, anon_sym_RPAREN, [46513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(196), 1, + STATE(1344), 1, sym_parenthesized_expression, [46523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(1340), 1, + STATE(184), 1, sym_parenthesized_expression, [46533] = 3, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3524), 1, + ACTIONS(3522), 1, anon_sym_LF, - ACTIONS(3526), 1, + ACTIONS(3524), 1, sym_preproc_arg, [46543] = 3, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_LPAREN2, - STATE(192), 1, - sym_parenthesized_expression, + ACTIONS(3526), 1, + anon_sym_LF, + ACTIONS(3528), 1, + sym_preproc_arg, [46553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - STATE(1418), 1, + STATE(1423), 1, sym_argument_list, [46563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 2, + ACTIONS(3324), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [46571] = 3, - ACTIONS(2571), 1, + [46571] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, - anon_sym_LF, - ACTIONS(3530), 1, - sym_preproc_arg, - [46581] = 3, + ACTIONS(3530), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [46579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_LPAREN2, + STATE(1378), 1, + sym_parenthesized_expression, + [46589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3532), 1, sym_identifier, ACTIONS(3534), 1, anon_sym_RPAREN, - [46591] = 3, + [46599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - STATE(1374), 1, - sym_parenthesized_expression, - [46601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(151), 1, + STATE(110), 1, sym_parenthesized_expression, - [46611] = 3, + [46609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3458), 1, anon_sym_LPAREN2, - STATE(1304), 1, + STATE(1308), 1, sym_parenthesized_expression, - [46621] = 3, + [46619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_LPAREN2, - STATE(174), 1, + STATE(157), 1, sym_parenthesized_expression, - [46631] = 2, + [46629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [46639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46647] = 3, + [46637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3478), 1, sym_identifier, - STATE(1347), 1, + STATE(1351), 1, sym_attribute, - [46657] = 2, + [46647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 2, + ACTIONS(2932), 2, anon_sym_COMMA, anon_sym_SEMI, - [46665] = 2, + [46655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2315), 2, anon_sym_COMMA, anon_sym_SEMI, - [46673] = 3, + [46663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3478), 1, sym_identifier, - STATE(1296), 1, + STATE(1299), 1, sym_attribute, - [46683] = 2, + [46673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3538), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46691] = 3, - ACTIONS(2571), 1, + [46681] = 3, + ACTIONS(2589), 1, sym_comment, ACTIONS(3540), 1, anon_sym_LF, ACTIONS(3542), 1, sym_preproc_arg, - [46701] = 2, + [46691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3544), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [46709] = 2, - ACTIONS(2571), 1, + [46699] = 2, + ACTIONS(2589), 1, sym_comment, ACTIONS(3546), 2, anon_sym_LF, sym_preproc_arg, + [46707] = 3, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_LF, + ACTIONS(3550), 1, + sym_preproc_arg, [46717] = 2, ACTIONS(3), 1, sym_comment, @@ -85380,52 +85729,52 @@ static const uint16_t ts_small_parse_table[] = { [46724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_SEMI, + ACTIONS(3552), 1, + anon_sym_SQUOTE, [46731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_SEMI, + ACTIONS(3554), 1, + anon_sym_COLON, [46738] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3548), 1, + ACTIONS(3556), 1, anon_sym_LF, [46745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, + ACTIONS(3558), 1, aux_sym_preproc_if_token2, [46752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3560), 1, anon_sym_STAR, [46759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3562), 1, aux_sym_preproc_if_token2, [46766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, + ACTIONS(2220), 1, anon_sym_SEMI, [46773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, - sym_identifier, + ACTIONS(3564), 1, + anon_sym_SEMI, [46780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2192), 1, anon_sym_SEMI, [46787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 1, + ACTIONS(3566), 1, anon_sym_SEMI, [46794] = 2, ACTIONS(3), 1, @@ -85435,187 +85784,187 @@ static const uint16_t ts_small_parse_table[] = { [46801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3568), 1, anon_sym_SQUOTE, [46808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3570), 1, aux_sym_preproc_if_token2, [46815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, - sym_identifier, + ACTIONS(3572), 1, + anon_sym_SEMI, [46822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3574), 1, sym_identifier, [46829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(2281), 1, anon_sym_RPAREN, [46836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, - anon_sym_RPAREN, + ACTIONS(3576), 1, + sym_identifier, [46843] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, - anon_sym_LF, + ACTIONS(3578), 1, + anon_sym_RPAREN, [46850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(2303), 1, anon_sym_RPAREN, [46857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - aux_sym_preproc_if_token2, - [46864] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(3580), 1, anon_sym_LF, - [46871] = 2, + [46864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3582), 1, aux_sym_preproc_if_token2, + [46871] = 2, + ACTIONS(2589), 1, + sym_comment, + ACTIONS(3584), 1, + anon_sym_LF, [46878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2307), 1, anon_sym_RPAREN, [46885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_SEMI, + ACTIONS(3586), 1, + aux_sym_preproc_if_token2, [46892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2305), 1, anon_sym_RPAREN, [46899] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, - anon_sym_LF, + ACTIONS(3588), 1, + anon_sym_SEMI, [46906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 1, + ACTIONS(2309), 1, anon_sym_RPAREN, [46913] = 2, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2212), 1, - anon_sym_SEMI, + ACTIONS(3590), 1, + anon_sym_LF, [46920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 1, - aux_sym_preproc_if_token2, + ACTIONS(2216), 1, + anon_sym_SEMI, [46927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2285), 1, anon_sym_RPAREN, [46934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - anon_sym_STAR, + ACTIONS(3592), 1, + aux_sym_preproc_if_token2, [46941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, - anon_sym_SEMI, + ACTIONS(3594), 1, + anon_sym_STAR, [46948] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3596), 1, anon_sym_LF, [46955] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3592), 1, + ACTIONS(3598), 1, anon_sym_LF, [46962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(2317), 1, anon_sym_SEMI, [46969] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3600), 1, anon_sym_LF, [46976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_COLON, + ACTIONS(3602), 1, + anon_sym_SEMI, [46983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3604), 1, aux_sym_preproc_if_token2, [46990] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3606), 1, anon_sym_LF, [46997] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3608), 1, anon_sym_LF, [47004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_COLON, [47011] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3612), 1, anon_sym_LF, [47018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - aux_sym_preproc_if_token2, + ACTIONS(2202), 1, + anon_sym_RPAREN, [47025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RPAREN, + ACTIONS(3614), 1, + aux_sym_preproc_if_token2, [47032] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3616), 1, anon_sym_LF, [47039] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3618), 1, anon_sym_LF, [47046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, [47053] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3620), 1, anon_sym_LF, [47060] = 2, ACTIONS(3), 1, @@ -85625,318 +85974,318 @@ static const uint16_t ts_small_parse_table[] = { [47067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3622), 1, sym_identifier, [47074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3624), 1, sym_identifier, [47081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3626), 1, anon_sym_SEMI, [47088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, + ACTIONS(2259), 1, anon_sym_SEMI, [47095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 1, - anon_sym_STAR, + ACTIONS(2196), 1, + anon_sym_RPAREN, [47102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_RPAREN, + ACTIONS(3628), 1, + anon_sym_STAR, [47109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3630), 1, sym_identifier, [47116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3632), 1, sym_identifier, [47123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - aux_sym_preproc_if_token2, + ACTIONS(2224), 1, + anon_sym_RPAREN, [47130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_SEMI, + ACTIONS(3634), 1, + aux_sym_preproc_if_token2, [47137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(3636), 1, aux_sym_preproc_if_token2, [47144] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3638), 1, anon_sym_LF, [47151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 1, + ACTIONS(3640), 1, anon_sym_while, [47158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2265), 1, anon_sym_RPAREN, [47165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, anon_sym_RPAREN, [47172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3642), 1, anon_sym_COLON, [47179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(3644), 1, aux_sym_preproc_if_token2, [47186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - aux_sym_preproc_if_token2, + ACTIONS(3646), 1, + sym_identifier, [47193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, - sym_identifier, + ACTIONS(3648), 1, + aux_sym_preproc_if_token2, [47200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3650), 1, aux_sym_preproc_if_token2, [47207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, + ACTIONS(3652), 1, anon_sym_SEMI, [47214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, - anon_sym_RPAREN, + ACTIONS(3654), 1, + anon_sym_SEMI, [47221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(3656), 1, anon_sym_SEMI, [47228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, + ACTIONS(2208), 1, anon_sym_RPAREN, [47235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2200), 1, - anon_sym_SEMI, + anon_sym_RPAREN, [47242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_RPAREN, + ACTIONS(2204), 1, + anon_sym_SEMI, [47249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, - anon_sym_COLON, + ACTIONS(3658), 1, + anon_sym_RPAREN, [47256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3660), 1, sym_identifier, [47263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3662), 1, sym_primitive_type, [47270] = 2, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_SEMI, + ACTIONS(3446), 1, + anon_sym_LF, [47277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3664), 1, sym_identifier, [47284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_LPAREN2, + ACTIONS(3666), 1, + sym_identifier, [47291] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_LF, + ACTIONS(3668), 1, + anon_sym_LPAREN2, [47298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3670), 1, sym_identifier, [47305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(3672), 1, aux_sym_preproc_if_token2, [47312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(3674), 1, aux_sym_preproc_if_token2, [47319] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(3676), 1, anon_sym_LF, [47326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3678), 1, anon_sym_RPAREN, [47333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3680), 1, anon_sym_RPAREN, [47340] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3676), 1, + ACTIONS(3682), 1, anon_sym_LF, [47347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2194), 1, anon_sym_RPAREN, [47354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, + ACTIONS(2212), 1, anon_sym_SEMI, [47361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, + ACTIONS(3684), 1, anon_sym_RPAREN, [47368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2214), 1, anon_sym_SEMI, [47375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - aux_sym_preproc_if_token2, + ACTIONS(3686), 1, + anon_sym_COMMA, [47382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3688), 1, anon_sym_RPAREN, [47389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 1, - anon_sym_COMMA, + ACTIONS(3690), 1, + aux_sym_preproc_if_token2, [47396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2222), 1, anon_sym_SEMI, [47403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(2226), 1, anon_sym_RPAREN, [47410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3692), 1, aux_sym_preproc_if_token2, [47417] = 2, - ACTIONS(3), 1, + ACTIONS(1811), 1, + anon_sym_LF, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3688), 1, - anon_sym_RPAREN, [47424] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3694), 1, anon_sym_LF, [47431] = 2, - ACTIONS(1807), 1, - anon_sym_LF, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(3696), 1, + anon_sym_RPAREN, [47438] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3692), 1, + ACTIONS(3698), 1, anon_sym_LF, [47445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - aux_sym_preproc_if_token2, + ACTIONS(2257), 1, + anon_sym_SEMI, [47452] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3334), 1, anon_sym_LF, [47459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(3700), 1, aux_sym_preproc_if_token2, [47466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, - anon_sym_SQUOTE, + ACTIONS(3702), 1, + aux_sym_preproc_if_token2, [47473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2277), 1, anon_sym_SEMI, [47480] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3384), 1, anon_sym_LF, [47487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3704), 1, anon_sym_SEMI, [47494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_SEMI, [47501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_RPAREN, + ACTIONS(2263), 1, + anon_sym_SEMI, [47508] = 2, ACTIONS(3), 1, sym_comment, @@ -85950,1663 +86299,1663 @@ static const uint16_t ts_small_parse_table[] = { [47522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3702), 1, + ACTIONS(3706), 1, sym_identifier, [47529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(3708), 1, sym_identifier, [47536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_RBRACK, + ACTIONS(2251), 1, + anon_sym_RPAREN, [47543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 1, - sym_identifier, + ACTIONS(3710), 1, + anon_sym_RBRACK, [47550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(3712), 1, anon_sym_SEMI, [47557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, - anon_sym_SEMI, + ACTIONS(3714), 1, + anon_sym_SQUOTE, [47564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, + ACTIONS(3716), 1, ts_builtin_sym_end, [47571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3718), 1, sym_identifier, [47578] = 2, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_SQUOTE, + ACTIONS(3720), 1, + anon_sym_LF, [47585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3722), 1, sym_identifier, [47592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_LPAREN2, + ACTIONS(3724), 1, + sym_identifier, [47599] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_LF, + ACTIONS(3726), 1, + anon_sym_LPAREN2, [47606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3728), 1, anon_sym_RPAREN, [47613] = 2, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3726), 1, - aux_sym_preproc_if_token2, + ACTIONS(3730), 1, + anon_sym_LF, [47620] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - anon_sym_LF, + ACTIONS(3732), 1, + aux_sym_preproc_if_token2, [47627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3734), 1, sym_identifier, [47634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_RPAREN, + ACTIONS(3736), 1, + aux_sym_preproc_if_token2, [47641] = 2, - ACTIONS(2571), 1, + ACTIONS(2589), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LF, [47648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2206), 1, anon_sym_SEMI, [47655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3738), 1, anon_sym_RPAREN, [47662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3740), 1, aux_sym_preproc_if_token2, [47669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2267), 1, anon_sym_SEMI, [47676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, - aux_sym_preproc_if_token2, + ACTIONS(3742), 1, + anon_sym_SEMI, [47683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(2273), 1, anon_sym_SEMI, [47690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 1, + ACTIONS(3744), 1, anon_sym_LPAREN2, [47697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(3746), 1, anon_sym_SEMI, [47704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 1, + ACTIONS(2275), 1, anon_sym_SEMI, [47711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_RPAREN, + ACTIONS(3748), 1, + aux_sym_preproc_if_token2, [47718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, + ACTIONS(3750), 1, sym_identifier, [47725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3752), 1, sym_identifier, [47732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 1, + ACTIONS(3754), 1, anon_sym_LPAREN2, [47739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, - anon_sym_SEMI, + ACTIONS(3756), 1, + anon_sym_RPAREN, [47746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3758), 1, sym_identifier, [47753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3760), 1, sym_identifier, [47760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3762), 1, anon_sym_COLON, [47767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 1, + ACTIONS(2311), 1, anon_sym_RPAREN, [47774] = 2, - ACTIONS(3), 1, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3760), 1, - anon_sym_RBRACK, + ACTIONS(3764), 1, + anon_sym_LF, [47781] = 2, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LF, + ACTIONS(3766), 1, + anon_sym_RPAREN, [47788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_RPAREN, + ACTIONS(3768), 1, + anon_sym_RBRACK, [47795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 1, + ACTIONS(3770), 1, anon_sym_RPAREN, [47802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, + ACTIONS(3772), 1, anon_sym_SEMI, [47809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, + ACTIONS(3774), 1, anon_sym_SEMI, [47816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3776), 1, aux_sym_preproc_if_token2, [47823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, + ACTIONS(2301), 1, anon_sym_SEMI, [47830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, - aux_sym_preproc_if_token2, + ACTIONS(3778), 1, + anon_sym_RPAREN, [47837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(2299), 1, anon_sym_SEMI, [47844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3776), 1, + ACTIONS(3780), 1, anon_sym_LPAREN2, [47851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(3782), 1, aux_sym_preproc_if_token2, [47858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, + ACTIONS(2297), 1, anon_sym_SEMI, [47865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 1, + ACTIONS(3784), 1, sym_identifier, [47872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, + ACTIONS(3786), 1, sym_identifier, [47879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 1, + ACTIONS(3788), 1, sym_identifier, [47886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 1, - anon_sym_LPAREN2, + ACTIONS(3790), 1, + aux_sym_preproc_if_token2, [47893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 1, - aux_sym_preproc_if_token2, + ACTIONS(3792), 1, + sym_identifier, [47900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3794), 1, anon_sym_COLON, [47907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, - sym_identifier, + ACTIONS(3796), 1, + anon_sym_STAR, [47914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, - anon_sym_STAR, + ACTIONS(3798), 1, + aux_sym_preproc_if_token2, [47921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - aux_sym_preproc_if_token2, + ACTIONS(3800), 1, + anon_sym_RPAREN, [47928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_RPAREN, + ACTIONS(3802), 1, + anon_sym_LPAREN2, [47935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(3804), 1, sym_identifier, [47942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3806), 1, anon_sym_RPAREN, [47949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, + ACTIONS(2283), 1, anon_sym_RPAREN, [47956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3808), 1, anon_sym_while, [47963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_RPAREN, + ACTIONS(3810), 1, + aux_sym_preproc_if_token2, [47970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, - aux_sym_preproc_if_token2, + ACTIONS(3812), 1, + anon_sym_RPAREN, [47977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 1, - anon_sym_COLON, + ACTIONS(3814), 1, + aux_sym_preproc_if_token2, [47984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3812), 1, - aux_sym_preproc_if_token2, + ACTIONS(3816), 1, + anon_sym_COLON, [47991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - sym_identifier, + ACTIONS(2287), 1, + anon_sym_RPAREN, [47998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_SEMI, [48005] = 2, - ACTIONS(1803), 1, - anon_sym_LF, - ACTIONS(2571), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(3818), 1, + sym_identifier, [48012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3820), 1, anon_sym_LPAREN2, [48019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, - anon_sym_RPAREN, + ACTIONS(3822), 1, + aux_sym_preproc_if_token2, [48026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(3824), 1, anon_sym_LPAREN2, [48033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - aux_sym_preproc_if_token2, + ACTIONS(2289), 1, + anon_sym_RPAREN, [48040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(3826), 1, anon_sym_while, [48047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2291), 1, anon_sym_RPAREN, [48054] = 2, - ACTIONS(3), 1, + ACTIONS(1807), 1, + anon_sym_LF, + ACTIONS(2589), 1, sym_comment, - ACTIONS(3824), 1, - sym_identifier, [48061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 1, - anon_sym_RPAREN, + ACTIONS(3828), 1, + sym_identifier, [48068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, + ACTIONS(2253), 1, anon_sym_SEMI, [48075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_RPAREN, + ACTIONS(3830), 1, + anon_sym_SEMI, [48082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_SEMI, + ACTIONS(3832), 1, + anon_sym_RPAREN, [48089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 1, + ACTIONS(3834), 1, anon_sym_LPAREN2, [48096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(3836), 1, aux_sym_preproc_if_token2, [48103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3838), 1, anon_sym_while, [48110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 1, + ACTIONS(3840), 1, aux_sym_preproc_if_token2, [48117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3842), 1, anon_sym_RPAREN, [48124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2230), 1, anon_sym_SEMI, [48131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3295), 1, anon_sym_RBRACE, [48138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(3844), 1, sym_identifier, [48145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3846), 1, anon_sym_LPAREN2, [48152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2293), 1, anon_sym_RPAREN, [48159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3848), 1, anon_sym_LPAREN2, [48166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(3850), 1, sym_identifier, [48173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(3852), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(386)] = 0, - [SMALL_STATE(387)] = 113, - [SMALL_STATE(388)] = 234, - [SMALL_STATE(389)] = 340, - [SMALL_STATE(390)] = 450, - [SMALL_STATE(391)] = 556, - [SMALL_STATE(392)] = 662, - [SMALL_STATE(393)] = 768, - [SMALL_STATE(394)] = 874, - [SMALL_STATE(395)] = 980, - [SMALL_STATE(396)] = 1086, - [SMALL_STATE(397)] = 1192, - [SMALL_STATE(398)] = 1298, - [SMALL_STATE(399)] = 1408, - [SMALL_STATE(400)] = 1514, - [SMALL_STATE(401)] = 1621, - [SMALL_STATE(402)] = 1731, - [SMALL_STATE(403)] = 1841, - [SMALL_STATE(404)] = 1951, - [SMALL_STATE(405)] = 2061, - [SMALL_STATE(406)] = 2171, - [SMALL_STATE(407)] = 2281, - [SMALL_STATE(408)] = 2391, - [SMALL_STATE(409)] = 2501, - [SMALL_STATE(410)] = 2611, - [SMALL_STATE(411)] = 2721, - [SMALL_STATE(412)] = 2831, - [SMALL_STATE(413)] = 2941, - [SMALL_STATE(414)] = 3051, - [SMALL_STATE(415)] = 3161, - [SMALL_STATE(416)] = 3240, - [SMALL_STATE(417)] = 3317, - [SMALL_STATE(418)] = 3396, - [SMALL_STATE(419)] = 3473, - [SMALL_STATE(420)] = 3550, - [SMALL_STATE(421)] = 3629, - [SMALL_STATE(422)] = 3708, - [SMALL_STATE(423)] = 3785, - [SMALL_STATE(424)] = 3887, - [SMALL_STATE(425)] = 3961, - [SMALL_STATE(426)] = 4061, - [SMALL_STATE(427)] = 4159, - [SMALL_STATE(428)] = 4259, - [SMALL_STATE(429)] = 4359, - [SMALL_STATE(430)] = 4457, - [SMALL_STATE(431)] = 4557, - [SMALL_STATE(432)] = 4657, - [SMALL_STATE(433)] = 4757, - [SMALL_STATE(434)] = 4852, - [SMALL_STATE(435)] = 4947, - [SMALL_STATE(436)] = 5042, - [SMALL_STATE(437)] = 5137, - [SMALL_STATE(438)] = 5232, - [SMALL_STATE(439)] = 5327, - [SMALL_STATE(440)] = 5422, - [SMALL_STATE(441)] = 5517, - [SMALL_STATE(442)] = 5612, - [SMALL_STATE(443)] = 5707, - [SMALL_STATE(444)] = 5802, - [SMALL_STATE(445)] = 5897, - [SMALL_STATE(446)] = 5992, - [SMALL_STATE(447)] = 6087, - [SMALL_STATE(448)] = 6182, - [SMALL_STATE(449)] = 6277, - [SMALL_STATE(450)] = 6372, - [SMALL_STATE(451)] = 6467, - [SMALL_STATE(452)] = 6562, - [SMALL_STATE(453)] = 6657, - [SMALL_STATE(454)] = 6752, - [SMALL_STATE(455)] = 6847, - [SMALL_STATE(456)] = 6942, - [SMALL_STATE(457)] = 7037, - [SMALL_STATE(458)] = 7132, - [SMALL_STATE(459)] = 7227, - [SMALL_STATE(460)] = 7322, - [SMALL_STATE(461)] = 7417, - [SMALL_STATE(462)] = 7512, - [SMALL_STATE(463)] = 7607, - [SMALL_STATE(464)] = 7702, - [SMALL_STATE(465)] = 7797, - [SMALL_STATE(466)] = 7892, - [SMALL_STATE(467)] = 7987, - [SMALL_STATE(468)] = 8082, - [SMALL_STATE(469)] = 8177, - [SMALL_STATE(470)] = 8272, - [SMALL_STATE(471)] = 8367, - [SMALL_STATE(472)] = 8472, - [SMALL_STATE(473)] = 8567, - [SMALL_STATE(474)] = 8662, - [SMALL_STATE(475)] = 8757, - [SMALL_STATE(476)] = 8852, - [SMALL_STATE(477)] = 8947, - [SMALL_STATE(478)] = 9042, - [SMALL_STATE(479)] = 9137, - [SMALL_STATE(480)] = 9232, - [SMALL_STATE(481)] = 9327, - [SMALL_STATE(482)] = 9419, - [SMALL_STATE(483)] = 9511, - [SMALL_STATE(484)] = 9603, - [SMALL_STATE(485)] = 9695, - [SMALL_STATE(486)] = 9787, - [SMALL_STATE(487)] = 9879, - [SMALL_STATE(488)] = 9971, - [SMALL_STATE(489)] = 10063, - [SMALL_STATE(490)] = 10155, - [SMALL_STATE(491)] = 10247, - [SMALL_STATE(492)] = 10339, - [SMALL_STATE(493)] = 10403, - [SMALL_STATE(494)] = 10495, - [SMALL_STATE(495)] = 10587, - [SMALL_STATE(496)] = 10679, - [SMALL_STATE(497)] = 10771, - [SMALL_STATE(498)] = 10863, - [SMALL_STATE(499)] = 10927, - [SMALL_STATE(500)] = 10991, - [SMALL_STATE(501)] = 11083, - [SMALL_STATE(502)] = 11172, - [SMALL_STATE(503)] = 11261, - [SMALL_STATE(504)] = 11350, - [SMALL_STATE(505)] = 11439, - [SMALL_STATE(506)] = 11528, - [SMALL_STATE(507)] = 11617, - [SMALL_STATE(508)] = 11706, - [SMALL_STATE(509)] = 11795, - [SMALL_STATE(510)] = 11884, - [SMALL_STATE(511)] = 11973, - [SMALL_STATE(512)] = 12062, - [SMALL_STATE(513)] = 12151, - [SMALL_STATE(514)] = 12240, - [SMALL_STATE(515)] = 12329, - [SMALL_STATE(516)] = 12418, - [SMALL_STATE(517)] = 12507, - [SMALL_STATE(518)] = 12596, - [SMALL_STATE(519)] = 12685, - [SMALL_STATE(520)] = 12774, - [SMALL_STATE(521)] = 12863, - [SMALL_STATE(522)] = 12952, - [SMALL_STATE(523)] = 13041, - [SMALL_STATE(524)] = 13130, - [SMALL_STATE(525)] = 13219, - [SMALL_STATE(526)] = 13312, - [SMALL_STATE(527)] = 13401, - [SMALL_STATE(528)] = 13490, - [SMALL_STATE(529)] = 13579, - [SMALL_STATE(530)] = 13668, - [SMALL_STATE(531)] = 13757, - [SMALL_STATE(532)] = 13846, - [SMALL_STATE(533)] = 13935, - [SMALL_STATE(534)] = 14024, - [SMALL_STATE(535)] = 14117, - [SMALL_STATE(536)] = 14206, - [SMALL_STATE(537)] = 14295, - [SMALL_STATE(538)] = 14384, - [SMALL_STATE(539)] = 14473, - [SMALL_STATE(540)] = 14562, - [SMALL_STATE(541)] = 14651, - [SMALL_STATE(542)] = 14740, - [SMALL_STATE(543)] = 14829, - [SMALL_STATE(544)] = 14918, - [SMALL_STATE(545)] = 15011, - [SMALL_STATE(546)] = 15100, - [SMALL_STATE(547)] = 15189, - [SMALL_STATE(548)] = 15278, - [SMALL_STATE(549)] = 15367, - [SMALL_STATE(550)] = 15456, - [SMALL_STATE(551)] = 15545, - [SMALL_STATE(552)] = 15634, - [SMALL_STATE(553)] = 15723, - [SMALL_STATE(554)] = 15812, - [SMALL_STATE(555)] = 15901, - [SMALL_STATE(556)] = 15990, - [SMALL_STATE(557)] = 16079, - [SMALL_STATE(558)] = 16168, - [SMALL_STATE(559)] = 16257, - [SMALL_STATE(560)] = 16346, - [SMALL_STATE(561)] = 16435, - [SMALL_STATE(562)] = 16524, - [SMALL_STATE(563)] = 16613, - [SMALL_STATE(564)] = 16702, - [SMALL_STATE(565)] = 16791, - [SMALL_STATE(566)] = 16880, - [SMALL_STATE(567)] = 16969, - [SMALL_STATE(568)] = 17062, - [SMALL_STATE(569)] = 17151, - [SMALL_STATE(570)] = 17240, - [SMALL_STATE(571)] = 17329, - [SMALL_STATE(572)] = 17418, - [SMALL_STATE(573)] = 17507, - [SMALL_STATE(574)] = 17596, - [SMALL_STATE(575)] = 17685, - [SMALL_STATE(576)] = 17774, - [SMALL_STATE(577)] = 17863, - [SMALL_STATE(578)] = 17952, - [SMALL_STATE(579)] = 18041, - [SMALL_STATE(580)] = 18130, - [SMALL_STATE(581)] = 18219, - [SMALL_STATE(582)] = 18308, - [SMALL_STATE(583)] = 18364, - [SMALL_STATE(584)] = 18420, - [SMALL_STATE(585)] = 18484, - [SMALL_STATE(586)] = 18535, - [SMALL_STATE(587)] = 18586, - [SMALL_STATE(588)] = 18637, - [SMALL_STATE(589)] = 18688, - [SMALL_STATE(590)] = 18748, - [SMALL_STATE(591)] = 18798, - [SMALL_STATE(592)] = 18868, - [SMALL_STATE(593)] = 18934, - [SMALL_STATE(594)] = 18984, - [SMALL_STATE(595)] = 19048, - [SMALL_STATE(596)] = 19110, - [SMALL_STATE(597)] = 19160, - [SMALL_STATE(598)] = 19210, - [SMALL_STATE(599)] = 19286, - [SMALL_STATE(600)] = 19336, - [SMALL_STATE(601)] = 19386, - [SMALL_STATE(602)] = 19436, - [SMALL_STATE(603)] = 19496, - [SMALL_STATE(604)] = 19546, - [SMALL_STATE(605)] = 19596, - [SMALL_STATE(606)] = 19646, - [SMALL_STATE(607)] = 19728, - [SMALL_STATE(608)] = 19778, - [SMALL_STATE(609)] = 19828, - [SMALL_STATE(610)] = 19878, - [SMALL_STATE(611)] = 19928, - [SMALL_STATE(612)] = 19988, - [SMALL_STATE(613)] = 20068, - [SMALL_STATE(614)] = 20118, - [SMALL_STATE(615)] = 20168, - [SMALL_STATE(616)] = 20234, - [SMALL_STATE(617)] = 20306, - [SMALL_STATE(618)] = 20356, - [SMALL_STATE(619)] = 20406, - [SMALL_STATE(620)] = 20456, - [SMALL_STATE(621)] = 20534, - [SMALL_STATE(622)] = 20584, - [SMALL_STATE(623)] = 20634, - [SMALL_STATE(624)] = 20692, - [SMALL_STATE(625)] = 20742, - [SMALL_STATE(626)] = 20792, - [SMALL_STATE(627)] = 20842, - [SMALL_STATE(628)] = 20916, - [SMALL_STATE(629)] = 20966, - [SMALL_STATE(630)] = 21016, - [SMALL_STATE(631)] = 21100, - [SMALL_STATE(632)] = 21184, - [SMALL_STATE(633)] = 21234, - [SMALL_STATE(634)] = 21294, - [SMALL_STATE(635)] = 21378, - [SMALL_STATE(636)] = 21428, - [SMALL_STATE(637)] = 21481, - [SMALL_STATE(638)] = 21562, - [SMALL_STATE(639)] = 21615, - [SMALL_STATE(640)] = 21668, - [SMALL_STATE(641)] = 21721, - [SMALL_STATE(642)] = 21774, - [SMALL_STATE(643)] = 21854, - [SMALL_STATE(644)] = 21924, - [SMALL_STATE(645)] = 21998, - [SMALL_STATE(646)] = 22072, - [SMALL_STATE(647)] = 22144, - [SMALL_STATE(648)] = 22194, - [SMALL_STATE(649)] = 22268, - [SMALL_STATE(650)] = 22342, - [SMALL_STATE(651)] = 22398, - [SMALL_STATE(652)] = 22454, - [SMALL_STATE(653)] = 22534, - [SMALL_STATE(654)] = 22596, - [SMALL_STATE(655)] = 22664, - [SMALL_STATE(656)] = 22720, - [SMALL_STATE(657)] = 22780, - [SMALL_STATE(658)] = 22846, - [SMALL_STATE(659)] = 22908, - [SMALL_STATE(660)] = 22982, - [SMALL_STATE(661)] = 23038, - [SMALL_STATE(662)] = 23092, - [SMALL_STATE(663)] = 23168, - [SMALL_STATE(664)] = 23226, - [SMALL_STATE(665)] = 23304, - [SMALL_STATE(666)] = 23349, - [SMALL_STATE(667)] = 23394, - [SMALL_STATE(668)] = 23443, - [SMALL_STATE(669)] = 23500, - [SMALL_STATE(670)] = 23571, - [SMALL_STATE(671)] = 23616, - [SMALL_STATE(672)] = 23692, - [SMALL_STATE(673)] = 23736, - [SMALL_STATE(674)] = 23776, - [SMALL_STATE(675)] = 23841, - [SMALL_STATE(676)] = 23880, - [SMALL_STATE(677)] = 23919, - [SMALL_STATE(678)] = 23974, - [SMALL_STATE(679)] = 24013, - [SMALL_STATE(680)] = 24052, - [SMALL_STATE(681)] = 24091, - [SMALL_STATE(682)] = 24130, - [SMALL_STATE(683)] = 24201, - [SMALL_STATE(684)] = 24240, - [SMALL_STATE(685)] = 24297, - [SMALL_STATE(686)] = 24336, - [SMALL_STATE(687)] = 24393, - [SMALL_STATE(688)] = 24462, - [SMALL_STATE(689)] = 24501, - [SMALL_STATE(690)] = 24540, - [SMALL_STATE(691)] = 24579, - [SMALL_STATE(692)] = 24618, - [SMALL_STATE(693)] = 24657, - [SMALL_STATE(694)] = 24710, - [SMALL_STATE(695)] = 24771, - [SMALL_STATE(696)] = 24810, - [SMALL_STATE(697)] = 24849, - [SMALL_STATE(698)] = 24922, - [SMALL_STATE(699)] = 24989, - [SMALL_STATE(700)] = 25028, - [SMALL_STATE(701)] = 25101, - [SMALL_STATE(702)] = 25140, - [SMALL_STATE(703)] = 25203, - [SMALL_STATE(704)] = 25242, - [SMALL_STATE(705)] = 25309, - [SMALL_STATE(706)] = 25348, - [SMALL_STATE(707)] = 25387, - [SMALL_STATE(708)] = 25426, - [SMALL_STATE(709)] = 25464, - [SMALL_STATE(710)] = 25502, - [SMALL_STATE(711)] = 25540, - [SMALL_STATE(712)] = 25578, - [SMALL_STATE(713)] = 25616, - [SMALL_STATE(714)] = 25653, - [SMALL_STATE(715)] = 25726, - [SMALL_STATE(716)] = 25801, - [SMALL_STATE(717)] = 25876, - [SMALL_STATE(718)] = 25917, - [SMALL_STATE(719)] = 25954, - [SMALL_STATE(720)] = 25991, - [SMALL_STATE(721)] = 26028, - [SMALL_STATE(722)] = 26065, - [SMALL_STATE(723)] = 26102, - [SMALL_STATE(724)] = 26139, - [SMALL_STATE(725)] = 26214, - [SMALL_STATE(726)] = 26251, - [SMALL_STATE(727)] = 26288, - [SMALL_STATE(728)] = 26329, - [SMALL_STATE(729)] = 26404, - [SMALL_STATE(730)] = 26441, - [SMALL_STATE(731)] = 26478, - [SMALL_STATE(732)] = 26515, - [SMALL_STATE(733)] = 26564, - [SMALL_STATE(734)] = 26613, - [SMALL_STATE(735)] = 26662, - [SMALL_STATE(736)] = 26699, - [SMALL_STATE(737)] = 26736, - [SMALL_STATE(738)] = 26773, - [SMALL_STATE(739)] = 26810, - [SMALL_STATE(740)] = 26847, - [SMALL_STATE(741)] = 26884, - [SMALL_STATE(742)] = 26921, - [SMALL_STATE(743)] = 26958, - [SMALL_STATE(744)] = 26995, - [SMALL_STATE(745)] = 27032, - [SMALL_STATE(746)] = 27069, - [SMALL_STATE(747)] = 27106, - [SMALL_STATE(748)] = 27143, - [SMALL_STATE(749)] = 27180, - [SMALL_STATE(750)] = 27229, - [SMALL_STATE(751)] = 27266, - [SMALL_STATE(752)] = 27303, - [SMALL_STATE(753)] = 27344, - [SMALL_STATE(754)] = 27381, - [SMALL_STATE(755)] = 27418, - [SMALL_STATE(756)] = 27455, - [SMALL_STATE(757)] = 27492, - [SMALL_STATE(758)] = 27533, - [SMALL_STATE(759)] = 27570, - [SMALL_STATE(760)] = 27607, - [SMALL_STATE(761)] = 27644, - [SMALL_STATE(762)] = 27681, - [SMALL_STATE(763)] = 27718, - [SMALL_STATE(764)] = 27759, - [SMALL_STATE(765)] = 27796, - [SMALL_STATE(766)] = 27868, - [SMALL_STATE(767)] = 27940, - [SMALL_STATE(768)] = 28012, - [SMALL_STATE(769)] = 28084, - [SMALL_STATE(770)] = 28156, - [SMALL_STATE(771)] = 28228, - [SMALL_STATE(772)] = 28300, - [SMALL_STATE(773)] = 28372, - [SMALL_STATE(774)] = 28444, - [SMALL_STATE(775)] = 28514, - [SMALL_STATE(776)] = 28586, - [SMALL_STATE(777)] = 28658, - [SMALL_STATE(778)] = 28730, - [SMALL_STATE(779)] = 28790, - [SMALL_STATE(780)] = 28862, - [SMALL_STATE(781)] = 28934, - [SMALL_STATE(782)] = 29006, - [SMALL_STATE(783)] = 29078, - [SMALL_STATE(784)] = 29150, - [SMALL_STATE(785)] = 29220, - [SMALL_STATE(786)] = 29292, - [SMALL_STATE(787)] = 29336, - [SMALL_STATE(788)] = 29406, - [SMALL_STATE(789)] = 29478, - [SMALL_STATE(790)] = 29550, - [SMALL_STATE(791)] = 29622, - [SMALL_STATE(792)] = 29694, - [SMALL_STATE(793)] = 29764, - [SMALL_STATE(794)] = 29836, - [SMALL_STATE(795)] = 29906, - [SMALL_STATE(796)] = 29978, - [SMALL_STATE(797)] = 30050, - [SMALL_STATE(798)] = 30122, - [SMALL_STATE(799)] = 30194, - [SMALL_STATE(800)] = 30266, - [SMALL_STATE(801)] = 30336, - [SMALL_STATE(802)] = 30408, - [SMALL_STATE(803)] = 30480, - [SMALL_STATE(804)] = 30552, - [SMALL_STATE(805)] = 30624, - [SMALL_STATE(806)] = 30696, - [SMALL_STATE(807)] = 30768, - [SMALL_STATE(808)] = 30840, - [SMALL_STATE(809)] = 30912, - [SMALL_STATE(810)] = 30984, - [SMALL_STATE(811)] = 31056, - [SMALL_STATE(812)] = 31128, - [SMALL_STATE(813)] = 31200, - [SMALL_STATE(814)] = 31272, - [SMALL_STATE(815)] = 31344, - [SMALL_STATE(816)] = 31416, - [SMALL_STATE(817)] = 31488, - [SMALL_STATE(818)] = 31560, - [SMALL_STATE(819)] = 31630, - [SMALL_STATE(820)] = 31702, - [SMALL_STATE(821)] = 31774, - [SMALL_STATE(822)] = 31846, - [SMALL_STATE(823)] = 31918, - [SMALL_STATE(824)] = 31990, - [SMALL_STATE(825)] = 32049, - [SMALL_STATE(826)] = 32106, - [SMALL_STATE(827)] = 32175, - [SMALL_STATE(828)] = 32244, - [SMALL_STATE(829)] = 32313, - [SMALL_STATE(830)] = 32370, - [SMALL_STATE(831)] = 32439, - [SMALL_STATE(832)] = 32508, - [SMALL_STATE(833)] = 32565, - [SMALL_STATE(834)] = 32634, - [SMALL_STATE(835)] = 32691, - [SMALL_STATE(836)] = 32760, - [SMALL_STATE(837)] = 32817, - [SMALL_STATE(838)] = 32884, - [SMALL_STATE(839)] = 32953, - [SMALL_STATE(840)] = 33022, - [SMALL_STATE(841)] = 33091, - [SMALL_STATE(842)] = 33140, - [SMALL_STATE(843)] = 33205, - [SMALL_STATE(844)] = 33274, - [SMALL_STATE(845)] = 33343, - [SMALL_STATE(846)] = 33412, - [SMALL_STATE(847)] = 33465, - [SMALL_STATE(848)] = 33528, - [SMALL_STATE(849)] = 33597, - [SMALL_STATE(850)] = 33666, - [SMALL_STATE(851)] = 33735, - [SMALL_STATE(852)] = 33792, - [SMALL_STATE(853)] = 33849, - [SMALL_STATE(854)] = 33906, - [SMALL_STATE(855)] = 33969, - [SMALL_STATE(856)] = 34038, - [SMALL_STATE(857)] = 34107, - [SMALL_STATE(858)] = 34176, - [SMALL_STATE(859)] = 34233, - [SMALL_STATE(860)] = 34294, - [SMALL_STATE(861)] = 34351, - [SMALL_STATE(862)] = 34420, - [SMALL_STATE(863)] = 34489, - [SMALL_STATE(864)] = 34558, - [SMALL_STATE(865)] = 34615, - [SMALL_STATE(866)] = 34684, - [SMALL_STATE(867)] = 34753, - [SMALL_STATE(868)] = 34810, - [SMALL_STATE(869)] = 34861, - [SMALL_STATE(870)] = 34918, - [SMALL_STATE(871)] = 34971, - [SMALL_STATE(872)] = 35040, - [SMALL_STATE(873)] = 35088, - [SMALL_STATE(874)] = 35136, - [SMALL_STATE(875)] = 35184, - [SMALL_STATE(876)] = 35232, - [SMALL_STATE(877)] = 35285, - [SMALL_STATE(878)] = 35322, - [SMALL_STATE(879)] = 35361, - [SMALL_STATE(880)] = 35414, - [SMALL_STATE(881)] = 35467, - [SMALL_STATE(882)] = 35520, - [SMALL_STATE(883)] = 35557, - [SMALL_STATE(884)] = 35594, - [SMALL_STATE(885)] = 35631, - [SMALL_STATE(886)] = 35668, - [SMALL_STATE(887)] = 35718, - [SMALL_STATE(888)] = 35768, - [SMALL_STATE(889)] = 35804, - [SMALL_STATE(890)] = 35854, - [SMALL_STATE(891)] = 35904, - [SMALL_STATE(892)] = 35954, - [SMALL_STATE(893)] = 36004, - [SMALL_STATE(894)] = 36054, - [SMALL_STATE(895)] = 36104, - [SMALL_STATE(896)] = 36154, - [SMALL_STATE(897)] = 36204, - [SMALL_STATE(898)] = 36235, - [SMALL_STATE(899)] = 36266, - [SMALL_STATE(900)] = 36297, - [SMALL_STATE(901)] = 36328, - [SMALL_STATE(902)] = 36359, - [SMALL_STATE(903)] = 36390, - [SMALL_STATE(904)] = 36421, - [SMALL_STATE(905)] = 36452, - [SMALL_STATE(906)] = 36483, - [SMALL_STATE(907)] = 36514, - [SMALL_STATE(908)] = 36545, - [SMALL_STATE(909)] = 36578, - [SMALL_STATE(910)] = 36609, - [SMALL_STATE(911)] = 36640, - [SMALL_STATE(912)] = 36671, - [SMALL_STATE(913)] = 36702, - [SMALL_STATE(914)] = 36733, - [SMALL_STATE(915)] = 36764, - [SMALL_STATE(916)] = 36795, - [SMALL_STATE(917)] = 36826, - [SMALL_STATE(918)] = 36857, - [SMALL_STATE(919)] = 36888, - [SMALL_STATE(920)] = 36919, - [SMALL_STATE(921)] = 36953, - [SMALL_STATE(922)] = 36996, - [SMALL_STATE(923)] = 37051, - [SMALL_STATE(924)] = 37106, - [SMALL_STATE(925)] = 37139, - [SMALL_STATE(926)] = 37174, - [SMALL_STATE(927)] = 37217, - [SMALL_STATE(928)] = 37257, - [SMALL_STATE(929)] = 37297, - [SMALL_STATE(930)] = 37325, - [SMALL_STATE(931)] = 37365, - [SMALL_STATE(932)] = 37397, - [SMALL_STATE(933)] = 37425, - [SMALL_STATE(934)] = 37465, - [SMALL_STATE(935)] = 37493, - [SMALL_STATE(936)] = 37521, - [SMALL_STATE(937)] = 37549, - [SMALL_STATE(938)] = 37577, - [SMALL_STATE(939)] = 37627, - [SMALL_STATE(940)] = 37669, - [SMALL_STATE(941)] = 37711, - [SMALL_STATE(942)] = 37751, - [SMALL_STATE(943)] = 37791, - [SMALL_STATE(944)] = 37839, - [SMALL_STATE(945)] = 37881, - [SMALL_STATE(946)] = 37927, - [SMALL_STATE(947)] = 37967, - [SMALL_STATE(948)] = 38013, - [SMALL_STATE(949)] = 38053, - [SMALL_STATE(950)] = 38097, - [SMALL_STATE(951)] = 38137, - [SMALL_STATE(952)] = 38177, - [SMALL_STATE(953)] = 38217, - [SMALL_STATE(954)] = 38257, - [SMALL_STATE(955)] = 38299, - [SMALL_STATE(956)] = 38339, - [SMALL_STATE(957)] = 38375, - [SMALL_STATE(958)] = 38415, - [SMALL_STATE(959)] = 38455, - [SMALL_STATE(960)] = 38495, - [SMALL_STATE(961)] = 38535, - [SMALL_STATE(962)] = 38569, - [SMALL_STATE(963)] = 38609, - [SMALL_STATE(964)] = 38649, - [SMALL_STATE(965)] = 38689, - [SMALL_STATE(966)] = 38729, - [SMALL_STATE(967)] = 38769, - [SMALL_STATE(968)] = 38811, - [SMALL_STATE(969)] = 38851, - [SMALL_STATE(970)] = 38891, - [SMALL_STATE(971)] = 38931, - [SMALL_STATE(972)] = 38959, - [SMALL_STATE(973)] = 38999, - [SMALL_STATE(974)] = 39039, - [SMALL_STATE(975)] = 39079, - [SMALL_STATE(976)] = 39119, - [SMALL_STATE(977)] = 39161, - [SMALL_STATE(978)] = 39189, - [SMALL_STATE(979)] = 39229, - [SMALL_STATE(980)] = 39257, - [SMALL_STATE(981)] = 39299, - [SMALL_STATE(982)] = 39339, - [SMALL_STATE(983)] = 39387, - [SMALL_STATE(984)] = 39427, - [SMALL_STATE(985)] = 39455, - [SMALL_STATE(986)] = 39495, - [SMALL_STATE(987)] = 39535, - [SMALL_STATE(988)] = 39575, - [SMALL_STATE(989)] = 39602, - [SMALL_STATE(990)] = 39643, - [SMALL_STATE(991)] = 39688, - [SMALL_STATE(992)] = 39719, - [SMALL_STATE(993)] = 39746, - [SMALL_STATE(994)] = 39781, - [SMALL_STATE(995)] = 39808, - [SMALL_STATE(996)] = 39841, - [SMALL_STATE(997)] = 39882, - [SMALL_STATE(998)] = 39909, - [SMALL_STATE(999)] = 39944, - [SMALL_STATE(1000)] = 39981, - [SMALL_STATE(1001)] = 40022, - [SMALL_STATE(1002)] = 40061, - [SMALL_STATE(1003)] = 40110, - [SMALL_STATE(1004)] = 40151, - [SMALL_STATE(1005)] = 40196, - [SMALL_STATE(1006)] = 40223, - [SMALL_STATE(1007)] = 40264, - [SMALL_STATE(1008)] = 40307, - [SMALL_STATE(1009)] = 40334, - [SMALL_STATE(1010)] = 40361, - [SMALL_STATE(1011)] = 40406, - [SMALL_STATE(1012)] = 40447, - [SMALL_STATE(1013)] = 40492, - [SMALL_STATE(1014)] = 40537, - [SMALL_STATE(1015)] = 40566, - [SMALL_STATE(1016)] = 40607, - [SMALL_STATE(1017)] = 40634, - [SMALL_STATE(1018)] = 40675, - [SMALL_STATE(1019)] = 40720, - [SMALL_STATE(1020)] = 40769, - [SMALL_STATE(1021)] = 40814, - [SMALL_STATE(1022)] = 40841, - [SMALL_STATE(1023)] = 40886, - [SMALL_STATE(1024)] = 40913, - [SMALL_STATE(1025)] = 40958, - [SMALL_STATE(1026)] = 40999, - [SMALL_STATE(1027)] = 41044, - [SMALL_STATE(1028)] = 41085, - [SMALL_STATE(1029)] = 41119, - [SMALL_STATE(1030)] = 41142, - [SMALL_STATE(1031)] = 41165, - [SMALL_STATE(1032)] = 41197, - [SMALL_STATE(1033)] = 41229, - [SMALL_STATE(1034)] = 41261, - [SMALL_STATE(1035)] = 41293, - [SMALL_STATE(1036)] = 41317, - [SMALL_STATE(1037)] = 41349, - [SMALL_STATE(1038)] = 41381, - [SMALL_STATE(1039)] = 41419, - [SMALL_STATE(1040)] = 41451, - [SMALL_STATE(1041)] = 41489, - [SMALL_STATE(1042)] = 41521, - [SMALL_STATE(1043)] = 41553, - [SMALL_STATE(1044)] = 41585, - [SMALL_STATE(1045)] = 41617, - [SMALL_STATE(1046)] = 41649, - [SMALL_STATE(1047)] = 41687, - [SMALL_STATE(1048)] = 41725, - [SMALL_STATE(1049)] = 41754, - [SMALL_STATE(1050)] = 41781, - [SMALL_STATE(1051)] = 41804, - [SMALL_STATE(1052)] = 41831, - [SMALL_STATE(1053)] = 41860, - [SMALL_STATE(1054)] = 41889, - [SMALL_STATE(1055)] = 41918, - [SMALL_STATE(1056)] = 41947, - [SMALL_STATE(1057)] = 41970, - [SMALL_STATE(1058)] = 41997, - [SMALL_STATE(1059)] = 42020, - [SMALL_STATE(1060)] = 42049, - [SMALL_STATE(1061)] = 42084, - [SMALL_STATE(1062)] = 42119, - [SMALL_STATE(1063)] = 42142, - [SMALL_STATE(1064)] = 42171, - [SMALL_STATE(1065)] = 42198, - [SMALL_STATE(1066)] = 42227, - [SMALL_STATE(1067)] = 42256, - [SMALL_STATE(1068)] = 42285, - [SMALL_STATE(1069)] = 42314, - [SMALL_STATE(1070)] = 42343, - [SMALL_STATE(1071)] = 42370, - [SMALL_STATE(1072)] = 42399, - [SMALL_STATE(1073)] = 42426, - [SMALL_STATE(1074)] = 42455, - [SMALL_STATE(1075)] = 42484, - [SMALL_STATE(1076)] = 42519, - [SMALL_STATE(1077)] = 42548, - [SMALL_STATE(1078)] = 42577, - [SMALL_STATE(1079)] = 42603, - [SMALL_STATE(1080)] = 42627, - [SMALL_STATE(1081)] = 42657, - [SMALL_STATE(1082)] = 42683, - [SMALL_STATE(1083)] = 42709, - [SMALL_STATE(1084)] = 42741, - [SMALL_STATE(1085)] = 42773, - [SMALL_STATE(1086)] = 42805, - [SMALL_STATE(1087)] = 42831, - [SMALL_STATE(1088)] = 42849, - [SMALL_STATE(1089)] = 42867, - [SMALL_STATE(1090)] = 42899, - [SMALL_STATE(1091)] = 42917, - [SMALL_STATE(1092)] = 42939, - [SMALL_STATE(1093)] = 42963, - [SMALL_STATE(1094)] = 42984, - [SMALL_STATE(1095)] = 43013, - [SMALL_STATE(1096)] = 43034, - [SMALL_STATE(1097)] = 43059, - [SMALL_STATE(1098)] = 43088, - [SMALL_STATE(1099)] = 43109, - [SMALL_STATE(1100)] = 43138, - [SMALL_STATE(1101)] = 43159, - [SMALL_STATE(1102)] = 43180, - [SMALL_STATE(1103)] = 43209, - [SMALL_STATE(1104)] = 43238, - [SMALL_STATE(1105)] = 43263, - [SMALL_STATE(1106)] = 43290, - [SMALL_STATE(1107)] = 43315, - [SMALL_STATE(1108)] = 43340, - [SMALL_STATE(1109)] = 43369, - [SMALL_STATE(1110)] = 43398, - [SMALL_STATE(1111)] = 43427, - [SMALL_STATE(1112)] = 43443, - [SMALL_STATE(1113)] = 43459, - [SMALL_STATE(1114)] = 43483, - [SMALL_STATE(1115)] = 43501, - [SMALL_STATE(1116)] = 43521, - [SMALL_STATE(1117)] = 43541, - [SMALL_STATE(1118)] = 43567, - [SMALL_STATE(1119)] = 43591, - [SMALL_STATE(1120)] = 43617, - [SMALL_STATE(1121)] = 43633, - [SMALL_STATE(1122)] = 43649, - [SMALL_STATE(1123)] = 43675, - [SMALL_STATE(1124)] = 43695, - [SMALL_STATE(1125)] = 43721, - [SMALL_STATE(1126)] = 43737, - [SMALL_STATE(1127)] = 43753, - [SMALL_STATE(1128)] = 43776, - [SMALL_STATE(1129)] = 43791, - [SMALL_STATE(1130)] = 43808, - [SMALL_STATE(1131)] = 43831, - [SMALL_STATE(1132)] = 43846, - [SMALL_STATE(1133)] = 43861, - [SMALL_STATE(1134)] = 43876, - [SMALL_STATE(1135)] = 43891, - [SMALL_STATE(1136)] = 43908, - [SMALL_STATE(1137)] = 43923, - [SMALL_STATE(1138)] = 43946, - [SMALL_STATE(1139)] = 43961, - [SMALL_STATE(1140)] = 43976, - [SMALL_STATE(1141)] = 43992, - [SMALL_STATE(1142)] = 44006, - [SMALL_STATE(1143)] = 44020, - [SMALL_STATE(1144)] = 44038, - [SMALL_STATE(1145)] = 44052, - [SMALL_STATE(1146)] = 44070, - [SMALL_STATE(1147)] = 44084, - [SMALL_STATE(1148)] = 44102, - [SMALL_STATE(1149)] = 44116, - [SMALL_STATE(1150)] = 44130, - [SMALL_STATE(1151)] = 44144, - [SMALL_STATE(1152)] = 44158, - [SMALL_STATE(1153)] = 44176, - [SMALL_STATE(1154)] = 44194, - [SMALL_STATE(1155)] = 44212, - [SMALL_STATE(1156)] = 44226, - [SMALL_STATE(1157)] = 44240, - [SMALL_STATE(1158)] = 44256, - [SMALL_STATE(1159)] = 44272, - [SMALL_STATE(1160)] = 44286, - [SMALL_STATE(1161)] = 44304, - [SMALL_STATE(1162)] = 44322, - [SMALL_STATE(1163)] = 44333, - [SMALL_STATE(1164)] = 44344, - [SMALL_STATE(1165)] = 44363, - [SMALL_STATE(1166)] = 44374, - [SMALL_STATE(1167)] = 44385, - [SMALL_STATE(1168)] = 44396, - [SMALL_STATE(1169)] = 44415, - [SMALL_STATE(1170)] = 44426, - [SMALL_STATE(1171)] = 44437, - [SMALL_STATE(1172)] = 44448, - [SMALL_STATE(1173)] = 44459, - [SMALL_STATE(1174)] = 44476, - [SMALL_STATE(1175)] = 44493, - [SMALL_STATE(1176)] = 44504, - [SMALL_STATE(1177)] = 44515, - [SMALL_STATE(1178)] = 44526, - [SMALL_STATE(1179)] = 44542, - [SMALL_STATE(1180)] = 44556, - [SMALL_STATE(1181)] = 44570, - [SMALL_STATE(1182)] = 44584, - [SMALL_STATE(1183)] = 44600, - [SMALL_STATE(1184)] = 44616, - [SMALL_STATE(1185)] = 44630, - [SMALL_STATE(1186)] = 44644, - [SMALL_STATE(1187)] = 44660, - [SMALL_STATE(1188)] = 44674, - [SMALL_STATE(1189)] = 44690, - [SMALL_STATE(1190)] = 44706, - [SMALL_STATE(1191)] = 44722, - [SMALL_STATE(1192)] = 44738, - [SMALL_STATE(1193)] = 44754, - [SMALL_STATE(1194)] = 44768, - [SMALL_STATE(1195)] = 44782, - [SMALL_STATE(1196)] = 44798, - [SMALL_STATE(1197)] = 44814, - [SMALL_STATE(1198)] = 44828, - [SMALL_STATE(1199)] = 44844, - [SMALL_STATE(1200)] = 44858, - [SMALL_STATE(1201)] = 44868, - [SMALL_STATE(1202)] = 44884, - [SMALL_STATE(1203)] = 44900, - [SMALL_STATE(1204)] = 44916, - [SMALL_STATE(1205)] = 44932, - [SMALL_STATE(1206)] = 44945, - [SMALL_STATE(1207)] = 44958, - [SMALL_STATE(1208)] = 44971, - [SMALL_STATE(1209)] = 44984, - [SMALL_STATE(1210)] = 44997, - [SMALL_STATE(1211)] = 45006, - [SMALL_STATE(1212)] = 45015, - [SMALL_STATE(1213)] = 45028, - [SMALL_STATE(1214)] = 45041, - [SMALL_STATE(1215)] = 45054, - [SMALL_STATE(1216)] = 45067, - [SMALL_STATE(1217)] = 45080, - [SMALL_STATE(1218)] = 45093, - [SMALL_STATE(1219)] = 45106, - [SMALL_STATE(1220)] = 45119, - [SMALL_STATE(1221)] = 45128, - [SMALL_STATE(1222)] = 45137, - [SMALL_STATE(1223)] = 45150, - [SMALL_STATE(1224)] = 45163, - [SMALL_STATE(1225)] = 45176, - [SMALL_STATE(1226)] = 45189, - [SMALL_STATE(1227)] = 45202, - [SMALL_STATE(1228)] = 45215, - [SMALL_STATE(1229)] = 45224, - [SMALL_STATE(1230)] = 45237, - [SMALL_STATE(1231)] = 45250, - [SMALL_STATE(1232)] = 45263, - [SMALL_STATE(1233)] = 45274, - [SMALL_STATE(1234)] = 45283, - [SMALL_STATE(1235)] = 45296, - [SMALL_STATE(1236)] = 45309, - [SMALL_STATE(1237)] = 45322, - [SMALL_STATE(1238)] = 45335, - [SMALL_STATE(1239)] = 45348, - [SMALL_STATE(1240)] = 45361, - [SMALL_STATE(1241)] = 45374, - [SMALL_STATE(1242)] = 45383, - [SMALL_STATE(1243)] = 45396, - [SMALL_STATE(1244)] = 45409, - [SMALL_STATE(1245)] = 45422, - [SMALL_STATE(1246)] = 45435, - [SMALL_STATE(1247)] = 45448, - [SMALL_STATE(1248)] = 45461, - [SMALL_STATE(1249)] = 45474, - [SMALL_STATE(1250)] = 45487, - [SMALL_STATE(1251)] = 45500, - [SMALL_STATE(1252)] = 45513, - [SMALL_STATE(1253)] = 45526, - [SMALL_STATE(1254)] = 45539, - [SMALL_STATE(1255)] = 45552, - [SMALL_STATE(1256)] = 45565, - [SMALL_STATE(1257)] = 45578, - [SMALL_STATE(1258)] = 45587, - [SMALL_STATE(1259)] = 45600, - [SMALL_STATE(1260)] = 45613, - [SMALL_STATE(1261)] = 45626, - [SMALL_STATE(1262)] = 45639, - [SMALL_STATE(1263)] = 45652, - [SMALL_STATE(1264)] = 45665, - [SMALL_STATE(1265)] = 45678, - [SMALL_STATE(1266)] = 45691, - [SMALL_STATE(1267)] = 45704, - [SMALL_STATE(1268)] = 45715, - [SMALL_STATE(1269)] = 45728, - [SMALL_STATE(1270)] = 45741, - [SMALL_STATE(1271)] = 45754, - [SMALL_STATE(1272)] = 45767, - [SMALL_STATE(1273)] = 45780, - [SMALL_STATE(1274)] = 45793, - [SMALL_STATE(1275)] = 45806, - [SMALL_STATE(1276)] = 45815, - [SMALL_STATE(1277)] = 45828, - [SMALL_STATE(1278)] = 45841, - [SMALL_STATE(1279)] = 45854, - [SMALL_STATE(1280)] = 45867, - [SMALL_STATE(1281)] = 45880, - [SMALL_STATE(1282)] = 45893, - [SMALL_STATE(1283)] = 45906, - [SMALL_STATE(1284)] = 45919, - [SMALL_STATE(1285)] = 45932, - [SMALL_STATE(1286)] = 45945, - [SMALL_STATE(1287)] = 45958, - [SMALL_STATE(1288)] = 45971, - [SMALL_STATE(1289)] = 45984, - [SMALL_STATE(1290)] = 45997, - [SMALL_STATE(1291)] = 46010, - [SMALL_STATE(1292)] = 46023, - [SMALL_STATE(1293)] = 46036, - [SMALL_STATE(1294)] = 46049, - [SMALL_STATE(1295)] = 46062, - [SMALL_STATE(1296)] = 46075, - [SMALL_STATE(1297)] = 46088, - [SMALL_STATE(1298)] = 46101, - [SMALL_STATE(1299)] = 46111, - [SMALL_STATE(1300)] = 46121, - [SMALL_STATE(1301)] = 46131, - [SMALL_STATE(1302)] = 46139, - [SMALL_STATE(1303)] = 46147, - [SMALL_STATE(1304)] = 46155, - [SMALL_STATE(1305)] = 46165, - [SMALL_STATE(1306)] = 46173, - [SMALL_STATE(1307)] = 46183, - [SMALL_STATE(1308)] = 46193, - [SMALL_STATE(1309)] = 46203, - [SMALL_STATE(1310)] = 46211, - [SMALL_STATE(1311)] = 46221, - [SMALL_STATE(1312)] = 46231, - [SMALL_STATE(1313)] = 46239, - [SMALL_STATE(1314)] = 46249, - [SMALL_STATE(1315)] = 46259, - [SMALL_STATE(1316)] = 46269, - [SMALL_STATE(1317)] = 46277, - [SMALL_STATE(1318)] = 46287, - [SMALL_STATE(1319)] = 46297, - [SMALL_STATE(1320)] = 46307, - [SMALL_STATE(1321)] = 46317, - [SMALL_STATE(1322)] = 46327, - [SMALL_STATE(1323)] = 46337, - [SMALL_STATE(1324)] = 46347, - [SMALL_STATE(1325)] = 46357, - [SMALL_STATE(1326)] = 46365, - [SMALL_STATE(1327)] = 46375, - [SMALL_STATE(1328)] = 46383, - [SMALL_STATE(1329)] = 46393, - [SMALL_STATE(1330)] = 46403, - [SMALL_STATE(1331)] = 46413, - [SMALL_STATE(1332)] = 46423, - [SMALL_STATE(1333)] = 46433, - [SMALL_STATE(1334)] = 46443, - [SMALL_STATE(1335)] = 46453, - [SMALL_STATE(1336)] = 46461, - [SMALL_STATE(1337)] = 46469, - [SMALL_STATE(1338)] = 46477, - [SMALL_STATE(1339)] = 46485, - [SMALL_STATE(1340)] = 46495, - [SMALL_STATE(1341)] = 46505, - [SMALL_STATE(1342)] = 46513, - [SMALL_STATE(1343)] = 46523, - [SMALL_STATE(1344)] = 46533, - [SMALL_STATE(1345)] = 46543, - [SMALL_STATE(1346)] = 46553, - [SMALL_STATE(1347)] = 46563, - [SMALL_STATE(1348)] = 46571, - [SMALL_STATE(1349)] = 46581, - [SMALL_STATE(1350)] = 46591, - [SMALL_STATE(1351)] = 46601, - [SMALL_STATE(1352)] = 46611, - [SMALL_STATE(1353)] = 46621, - [SMALL_STATE(1354)] = 46631, - [SMALL_STATE(1355)] = 46639, - [SMALL_STATE(1356)] = 46647, - [SMALL_STATE(1357)] = 46657, - [SMALL_STATE(1358)] = 46665, - [SMALL_STATE(1359)] = 46673, - [SMALL_STATE(1360)] = 46683, - [SMALL_STATE(1361)] = 46691, - [SMALL_STATE(1362)] = 46701, - [SMALL_STATE(1363)] = 46709, - [SMALL_STATE(1364)] = 46717, - [SMALL_STATE(1365)] = 46724, - [SMALL_STATE(1366)] = 46731, - [SMALL_STATE(1367)] = 46738, - [SMALL_STATE(1368)] = 46745, - [SMALL_STATE(1369)] = 46752, - [SMALL_STATE(1370)] = 46759, - [SMALL_STATE(1371)] = 46766, - [SMALL_STATE(1372)] = 46773, - [SMALL_STATE(1373)] = 46780, - [SMALL_STATE(1374)] = 46787, - [SMALL_STATE(1375)] = 46794, - [SMALL_STATE(1376)] = 46801, - [SMALL_STATE(1377)] = 46808, - [SMALL_STATE(1378)] = 46815, - [SMALL_STATE(1379)] = 46822, - [SMALL_STATE(1380)] = 46829, - [SMALL_STATE(1381)] = 46836, - [SMALL_STATE(1382)] = 46843, - [SMALL_STATE(1383)] = 46850, - [SMALL_STATE(1384)] = 46857, - [SMALL_STATE(1385)] = 46864, - [SMALL_STATE(1386)] = 46871, - [SMALL_STATE(1387)] = 46878, - [SMALL_STATE(1388)] = 46885, - [SMALL_STATE(1389)] = 46892, - [SMALL_STATE(1390)] = 46899, - [SMALL_STATE(1391)] = 46906, - [SMALL_STATE(1392)] = 46913, - [SMALL_STATE(1393)] = 46920, - [SMALL_STATE(1394)] = 46927, - [SMALL_STATE(1395)] = 46934, - [SMALL_STATE(1396)] = 46941, - [SMALL_STATE(1397)] = 46948, - [SMALL_STATE(1398)] = 46955, - [SMALL_STATE(1399)] = 46962, - [SMALL_STATE(1400)] = 46969, - [SMALL_STATE(1401)] = 46976, - [SMALL_STATE(1402)] = 46983, - [SMALL_STATE(1403)] = 46990, - [SMALL_STATE(1404)] = 46997, - [SMALL_STATE(1405)] = 47004, - [SMALL_STATE(1406)] = 47011, - [SMALL_STATE(1407)] = 47018, - [SMALL_STATE(1408)] = 47025, - [SMALL_STATE(1409)] = 47032, - [SMALL_STATE(1410)] = 47039, - [SMALL_STATE(1411)] = 47046, - [SMALL_STATE(1412)] = 47053, - [SMALL_STATE(1413)] = 47060, - [SMALL_STATE(1414)] = 47067, - [SMALL_STATE(1415)] = 47074, - [SMALL_STATE(1416)] = 47081, - [SMALL_STATE(1417)] = 47088, - [SMALL_STATE(1418)] = 47095, - [SMALL_STATE(1419)] = 47102, - [SMALL_STATE(1420)] = 47109, - [SMALL_STATE(1421)] = 47116, - [SMALL_STATE(1422)] = 47123, - [SMALL_STATE(1423)] = 47130, - [SMALL_STATE(1424)] = 47137, - [SMALL_STATE(1425)] = 47144, - [SMALL_STATE(1426)] = 47151, - [SMALL_STATE(1427)] = 47158, - [SMALL_STATE(1428)] = 47165, - [SMALL_STATE(1429)] = 47172, - [SMALL_STATE(1430)] = 47179, - [SMALL_STATE(1431)] = 47186, - [SMALL_STATE(1432)] = 47193, - [SMALL_STATE(1433)] = 47200, - [SMALL_STATE(1434)] = 47207, - [SMALL_STATE(1435)] = 47214, - [SMALL_STATE(1436)] = 47221, - [SMALL_STATE(1437)] = 47228, - [SMALL_STATE(1438)] = 47235, - [SMALL_STATE(1439)] = 47242, - [SMALL_STATE(1440)] = 47249, - [SMALL_STATE(1441)] = 47256, - [SMALL_STATE(1442)] = 47263, - [SMALL_STATE(1443)] = 47270, - [SMALL_STATE(1444)] = 47277, - [SMALL_STATE(1445)] = 47284, - [SMALL_STATE(1446)] = 47291, - [SMALL_STATE(1447)] = 47298, - [SMALL_STATE(1448)] = 47305, - [SMALL_STATE(1449)] = 47312, - [SMALL_STATE(1450)] = 47319, - [SMALL_STATE(1451)] = 47326, - [SMALL_STATE(1452)] = 47333, - [SMALL_STATE(1453)] = 47340, - [SMALL_STATE(1454)] = 47347, - [SMALL_STATE(1455)] = 47354, - [SMALL_STATE(1456)] = 47361, - [SMALL_STATE(1457)] = 47368, - [SMALL_STATE(1458)] = 47375, - [SMALL_STATE(1459)] = 47382, - [SMALL_STATE(1460)] = 47389, - [SMALL_STATE(1461)] = 47396, - [SMALL_STATE(1462)] = 47403, - [SMALL_STATE(1463)] = 47410, - [SMALL_STATE(1464)] = 47417, - [SMALL_STATE(1465)] = 47424, - [SMALL_STATE(1466)] = 47431, - [SMALL_STATE(1467)] = 47438, - [SMALL_STATE(1468)] = 47445, - [SMALL_STATE(1469)] = 47452, - [SMALL_STATE(1470)] = 47459, - [SMALL_STATE(1471)] = 47466, - [SMALL_STATE(1472)] = 47473, - [SMALL_STATE(1473)] = 47480, - [SMALL_STATE(1474)] = 47487, - [SMALL_STATE(1475)] = 47494, - [SMALL_STATE(1476)] = 47501, - [SMALL_STATE(1477)] = 47508, - [SMALL_STATE(1478)] = 47515, - [SMALL_STATE(1479)] = 47522, - [SMALL_STATE(1480)] = 47529, - [SMALL_STATE(1481)] = 47536, - [SMALL_STATE(1482)] = 47543, - [SMALL_STATE(1483)] = 47550, - [SMALL_STATE(1484)] = 47557, - [SMALL_STATE(1485)] = 47564, - [SMALL_STATE(1486)] = 47571, - [SMALL_STATE(1487)] = 47578, - [SMALL_STATE(1488)] = 47585, - [SMALL_STATE(1489)] = 47592, - [SMALL_STATE(1490)] = 47599, - [SMALL_STATE(1491)] = 47606, - [SMALL_STATE(1492)] = 47613, - [SMALL_STATE(1493)] = 47620, - [SMALL_STATE(1494)] = 47627, - [SMALL_STATE(1495)] = 47634, - [SMALL_STATE(1496)] = 47641, - [SMALL_STATE(1497)] = 47648, - [SMALL_STATE(1498)] = 47655, - [SMALL_STATE(1499)] = 47662, - [SMALL_STATE(1500)] = 47669, - [SMALL_STATE(1501)] = 47676, - [SMALL_STATE(1502)] = 47683, - [SMALL_STATE(1503)] = 47690, - [SMALL_STATE(1504)] = 47697, - [SMALL_STATE(1505)] = 47704, - [SMALL_STATE(1506)] = 47711, - [SMALL_STATE(1507)] = 47718, - [SMALL_STATE(1508)] = 47725, - [SMALL_STATE(1509)] = 47732, - [SMALL_STATE(1510)] = 47739, - [SMALL_STATE(1511)] = 47746, - [SMALL_STATE(1512)] = 47753, - [SMALL_STATE(1513)] = 47760, - [SMALL_STATE(1514)] = 47767, - [SMALL_STATE(1515)] = 47774, - [SMALL_STATE(1516)] = 47781, - [SMALL_STATE(1517)] = 47788, - [SMALL_STATE(1518)] = 47795, - [SMALL_STATE(1519)] = 47802, - [SMALL_STATE(1520)] = 47809, - [SMALL_STATE(1521)] = 47816, - [SMALL_STATE(1522)] = 47823, - [SMALL_STATE(1523)] = 47830, - [SMALL_STATE(1524)] = 47837, - [SMALL_STATE(1525)] = 47844, - [SMALL_STATE(1526)] = 47851, - [SMALL_STATE(1527)] = 47858, - [SMALL_STATE(1528)] = 47865, - [SMALL_STATE(1529)] = 47872, - [SMALL_STATE(1530)] = 47879, - [SMALL_STATE(1531)] = 47886, - [SMALL_STATE(1532)] = 47893, - [SMALL_STATE(1533)] = 47900, - [SMALL_STATE(1534)] = 47907, - [SMALL_STATE(1535)] = 47914, - [SMALL_STATE(1536)] = 47921, - [SMALL_STATE(1537)] = 47928, - [SMALL_STATE(1538)] = 47935, - [SMALL_STATE(1539)] = 47942, - [SMALL_STATE(1540)] = 47949, - [SMALL_STATE(1541)] = 47956, - [SMALL_STATE(1542)] = 47963, - [SMALL_STATE(1543)] = 47970, - [SMALL_STATE(1544)] = 47977, - [SMALL_STATE(1545)] = 47984, - [SMALL_STATE(1546)] = 47991, - [SMALL_STATE(1547)] = 47998, - [SMALL_STATE(1548)] = 48005, - [SMALL_STATE(1549)] = 48012, - [SMALL_STATE(1550)] = 48019, - [SMALL_STATE(1551)] = 48026, - [SMALL_STATE(1552)] = 48033, - [SMALL_STATE(1553)] = 48040, - [SMALL_STATE(1554)] = 48047, - [SMALL_STATE(1555)] = 48054, - [SMALL_STATE(1556)] = 48061, - [SMALL_STATE(1557)] = 48068, - [SMALL_STATE(1558)] = 48075, - [SMALL_STATE(1559)] = 48082, - [SMALL_STATE(1560)] = 48089, - [SMALL_STATE(1561)] = 48096, - [SMALL_STATE(1562)] = 48103, - [SMALL_STATE(1563)] = 48110, - [SMALL_STATE(1564)] = 48117, - [SMALL_STATE(1565)] = 48124, - [SMALL_STATE(1566)] = 48131, - [SMALL_STATE(1567)] = 48138, - [SMALL_STATE(1568)] = 48145, - [SMALL_STATE(1569)] = 48152, - [SMALL_STATE(1570)] = 48159, - [SMALL_STATE(1571)] = 48166, - [SMALL_STATE(1572)] = 48173, + [SMALL_STATE(390)] = 0, + [SMALL_STATE(391)] = 121, + [SMALL_STATE(392)] = 234, + [SMALL_STATE(393)] = 340, + [SMALL_STATE(394)] = 446, + [SMALL_STATE(395)] = 552, + [SMALL_STATE(396)] = 658, + [SMALL_STATE(397)] = 764, + [SMALL_STATE(398)] = 870, + [SMALL_STATE(399)] = 976, + [SMALL_STATE(400)] = 1082, + [SMALL_STATE(401)] = 1188, + [SMALL_STATE(402)] = 1294, + [SMALL_STATE(403)] = 1404, + [SMALL_STATE(404)] = 1514, + [SMALL_STATE(405)] = 1621, + [SMALL_STATE(406)] = 1731, + [SMALL_STATE(407)] = 1841, + [SMALL_STATE(408)] = 1951, + [SMALL_STATE(409)] = 2061, + [SMALL_STATE(410)] = 2171, + [SMALL_STATE(411)] = 2281, + [SMALL_STATE(412)] = 2391, + [SMALL_STATE(413)] = 2501, + [SMALL_STATE(414)] = 2611, + [SMALL_STATE(415)] = 2721, + [SMALL_STATE(416)] = 2831, + [SMALL_STATE(417)] = 2941, + [SMALL_STATE(418)] = 3051, + [SMALL_STATE(419)] = 3161, + [SMALL_STATE(420)] = 3240, + [SMALL_STATE(421)] = 3319, + [SMALL_STATE(422)] = 3396, + [SMALL_STATE(423)] = 3473, + [SMALL_STATE(424)] = 3552, + [SMALL_STATE(425)] = 3631, + [SMALL_STATE(426)] = 3708, + [SMALL_STATE(427)] = 3785, + [SMALL_STATE(428)] = 3887, + [SMALL_STATE(429)] = 3961, + [SMALL_STATE(430)] = 4061, + [SMALL_STATE(431)] = 4161, + [SMALL_STATE(432)] = 4261, + [SMALL_STATE(433)] = 4361, + [SMALL_STATE(434)] = 4461, + [SMALL_STATE(435)] = 4559, + [SMALL_STATE(436)] = 4657, + [SMALL_STATE(437)] = 4757, + [SMALL_STATE(438)] = 4852, + [SMALL_STATE(439)] = 4947, + [SMALL_STATE(440)] = 5042, + [SMALL_STATE(441)] = 5137, + [SMALL_STATE(442)] = 5232, + [SMALL_STATE(443)] = 5327, + [SMALL_STATE(444)] = 5432, + [SMALL_STATE(445)] = 5527, + [SMALL_STATE(446)] = 5622, + [SMALL_STATE(447)] = 5717, + [SMALL_STATE(448)] = 5812, + [SMALL_STATE(449)] = 5907, + [SMALL_STATE(450)] = 6002, + [SMALL_STATE(451)] = 6097, + [SMALL_STATE(452)] = 6192, + [SMALL_STATE(453)] = 6287, + [SMALL_STATE(454)] = 6382, + [SMALL_STATE(455)] = 6477, + [SMALL_STATE(456)] = 6572, + [SMALL_STATE(457)] = 6667, + [SMALL_STATE(458)] = 6762, + [SMALL_STATE(459)] = 6857, + [SMALL_STATE(460)] = 6952, + [SMALL_STATE(461)] = 7047, + [SMALL_STATE(462)] = 7142, + [SMALL_STATE(463)] = 7237, + [SMALL_STATE(464)] = 7332, + [SMALL_STATE(465)] = 7427, + [SMALL_STATE(466)] = 7522, + [SMALL_STATE(467)] = 7617, + [SMALL_STATE(468)] = 7712, + [SMALL_STATE(469)] = 7807, + [SMALL_STATE(470)] = 7902, + [SMALL_STATE(471)] = 7997, + [SMALL_STATE(472)] = 8092, + [SMALL_STATE(473)] = 8187, + [SMALL_STATE(474)] = 8282, + [SMALL_STATE(475)] = 8377, + [SMALL_STATE(476)] = 8472, + [SMALL_STATE(477)] = 8567, + [SMALL_STATE(478)] = 8662, + [SMALL_STATE(479)] = 8757, + [SMALL_STATE(480)] = 8852, + [SMALL_STATE(481)] = 8947, + [SMALL_STATE(482)] = 9042, + [SMALL_STATE(483)] = 9137, + [SMALL_STATE(484)] = 9232, + [SMALL_STATE(485)] = 9327, + [SMALL_STATE(486)] = 9391, + [SMALL_STATE(487)] = 9483, + [SMALL_STATE(488)] = 9575, + [SMALL_STATE(489)] = 9667, + [SMALL_STATE(490)] = 9759, + [SMALL_STATE(491)] = 9851, + [SMALL_STATE(492)] = 9943, + [SMALL_STATE(493)] = 10035, + [SMALL_STATE(494)] = 10127, + [SMALL_STATE(495)] = 10219, + [SMALL_STATE(496)] = 10311, + [SMALL_STATE(497)] = 10403, + [SMALL_STATE(498)] = 10467, + [SMALL_STATE(499)] = 10559, + [SMALL_STATE(500)] = 10651, + [SMALL_STATE(501)] = 10743, + [SMALL_STATE(502)] = 10835, + [SMALL_STATE(503)] = 10899, + [SMALL_STATE(504)] = 10991, + [SMALL_STATE(505)] = 11083, + [SMALL_STATE(506)] = 11176, + [SMALL_STATE(507)] = 11265, + [SMALL_STATE(508)] = 11354, + [SMALL_STATE(509)] = 11443, + [SMALL_STATE(510)] = 11532, + [SMALL_STATE(511)] = 11621, + [SMALL_STATE(512)] = 11710, + [SMALL_STATE(513)] = 11799, + [SMALL_STATE(514)] = 11888, + [SMALL_STATE(515)] = 11977, + [SMALL_STATE(516)] = 12066, + [SMALL_STATE(517)] = 12155, + [SMALL_STATE(518)] = 12244, + [SMALL_STATE(519)] = 12333, + [SMALL_STATE(520)] = 12422, + [SMALL_STATE(521)] = 12511, + [SMALL_STATE(522)] = 12604, + [SMALL_STATE(523)] = 12693, + [SMALL_STATE(524)] = 12782, + [SMALL_STATE(525)] = 12871, + [SMALL_STATE(526)] = 12960, + [SMALL_STATE(527)] = 13049, + [SMALL_STATE(528)] = 13138, + [SMALL_STATE(529)] = 13227, + [SMALL_STATE(530)] = 13316, + [SMALL_STATE(531)] = 13405, + [SMALL_STATE(532)] = 13494, + [SMALL_STATE(533)] = 13583, + [SMALL_STATE(534)] = 13672, + [SMALL_STATE(535)] = 13761, + [SMALL_STATE(536)] = 13854, + [SMALL_STATE(537)] = 13943, + [SMALL_STATE(538)] = 14032, + [SMALL_STATE(539)] = 14121, + [SMALL_STATE(540)] = 14214, + [SMALL_STATE(541)] = 14303, + [SMALL_STATE(542)] = 14392, + [SMALL_STATE(543)] = 14481, + [SMALL_STATE(544)] = 14570, + [SMALL_STATE(545)] = 14659, + [SMALL_STATE(546)] = 14748, + [SMALL_STATE(547)] = 14837, + [SMALL_STATE(548)] = 14926, + [SMALL_STATE(549)] = 15015, + [SMALL_STATE(550)] = 15104, + [SMALL_STATE(551)] = 15193, + [SMALL_STATE(552)] = 15282, + [SMALL_STATE(553)] = 15371, + [SMALL_STATE(554)] = 15460, + [SMALL_STATE(555)] = 15549, + [SMALL_STATE(556)] = 15638, + [SMALL_STATE(557)] = 15727, + [SMALL_STATE(558)] = 15816, + [SMALL_STATE(559)] = 15905, + [SMALL_STATE(560)] = 15994, + [SMALL_STATE(561)] = 16083, + [SMALL_STATE(562)] = 16172, + [SMALL_STATE(563)] = 16261, + [SMALL_STATE(564)] = 16350, + [SMALL_STATE(565)] = 16439, + [SMALL_STATE(566)] = 16528, + [SMALL_STATE(567)] = 16617, + [SMALL_STATE(568)] = 16706, + [SMALL_STATE(569)] = 16795, + [SMALL_STATE(570)] = 16884, + [SMALL_STATE(571)] = 16973, + [SMALL_STATE(572)] = 17062, + [SMALL_STATE(573)] = 17151, + [SMALL_STATE(574)] = 17240, + [SMALL_STATE(575)] = 17329, + [SMALL_STATE(576)] = 17418, + [SMALL_STATE(577)] = 17507, + [SMALL_STATE(578)] = 17596, + [SMALL_STATE(579)] = 17685, + [SMALL_STATE(580)] = 17774, + [SMALL_STATE(581)] = 17863, + [SMALL_STATE(582)] = 17952, + [SMALL_STATE(583)] = 18041, + [SMALL_STATE(584)] = 18130, + [SMALL_STATE(585)] = 18219, + [SMALL_STATE(586)] = 18308, + [SMALL_STATE(587)] = 18364, + [SMALL_STATE(588)] = 18420, + [SMALL_STATE(589)] = 18484, + [SMALL_STATE(590)] = 18535, + [SMALL_STATE(591)] = 18586, + [SMALL_STATE(592)] = 18637, + [SMALL_STATE(593)] = 18688, + [SMALL_STATE(594)] = 18738, + [SMALL_STATE(595)] = 18798, + [SMALL_STATE(596)] = 18848, + [SMALL_STATE(597)] = 18920, + [SMALL_STATE(598)] = 19002, + [SMALL_STATE(599)] = 19052, + [SMALL_STATE(600)] = 19102, + [SMALL_STATE(601)] = 19152, + [SMALL_STATE(602)] = 19202, + [SMALL_STATE(603)] = 19252, + [SMALL_STATE(604)] = 19302, + [SMALL_STATE(605)] = 19352, + [SMALL_STATE(606)] = 19402, + [SMALL_STATE(607)] = 19452, + [SMALL_STATE(608)] = 19502, + [SMALL_STATE(609)] = 19552, + [SMALL_STATE(610)] = 19602, + [SMALL_STATE(611)] = 19652, + [SMALL_STATE(612)] = 19702, + [SMALL_STATE(613)] = 19752, + [SMALL_STATE(614)] = 19802, + [SMALL_STATE(615)] = 19852, + [SMALL_STATE(616)] = 19918, + [SMALL_STATE(617)] = 19968, + [SMALL_STATE(618)] = 20048, + [SMALL_STATE(619)] = 20098, + [SMALL_STATE(620)] = 20182, + [SMALL_STATE(621)] = 20246, + [SMALL_STATE(622)] = 20320, + [SMALL_STATE(623)] = 20370, + [SMALL_STATE(624)] = 20420, + [SMALL_STATE(625)] = 20480, + [SMALL_STATE(626)] = 20550, + [SMALL_STATE(627)] = 20626, + [SMALL_STATE(628)] = 20676, + [SMALL_STATE(629)] = 20742, + [SMALL_STATE(630)] = 20820, + [SMALL_STATE(631)] = 20870, + [SMALL_STATE(632)] = 20954, + [SMALL_STATE(633)] = 21004, + [SMALL_STATE(634)] = 21088, + [SMALL_STATE(635)] = 21148, + [SMALL_STATE(636)] = 21198, + [SMALL_STATE(637)] = 21256, + [SMALL_STATE(638)] = 21306, + [SMALL_STATE(639)] = 21366, + [SMALL_STATE(640)] = 21428, + [SMALL_STATE(641)] = 21481, + [SMALL_STATE(642)] = 21562, + [SMALL_STATE(643)] = 21615, + [SMALL_STATE(644)] = 21668, + [SMALL_STATE(645)] = 21721, + [SMALL_STATE(646)] = 21774, + [SMALL_STATE(647)] = 21834, + [SMALL_STATE(648)] = 21896, + [SMALL_STATE(649)] = 21950, + [SMALL_STATE(650)] = 22024, + [SMALL_STATE(651)] = 22074, + [SMALL_STATE(652)] = 22154, + [SMALL_STATE(653)] = 22216, + [SMALL_STATE(654)] = 22272, + [SMALL_STATE(655)] = 22328, + [SMALL_STATE(656)] = 22402, + [SMALL_STATE(657)] = 22480, + [SMALL_STATE(658)] = 22538, + [SMALL_STATE(659)] = 22612, + [SMALL_STATE(660)] = 22688, + [SMALL_STATE(661)] = 22768, + [SMALL_STATE(662)] = 22824, + [SMALL_STATE(663)] = 22898, + [SMALL_STATE(664)] = 22970, + [SMALL_STATE(665)] = 23040, + [SMALL_STATE(666)] = 23096, + [SMALL_STATE(667)] = 23162, + [SMALL_STATE(668)] = 23236, + [SMALL_STATE(669)] = 23304, + [SMALL_STATE(670)] = 23353, + [SMALL_STATE(671)] = 23398, + [SMALL_STATE(672)] = 23469, + [SMALL_STATE(673)] = 23514, + [SMALL_STATE(674)] = 23559, + [SMALL_STATE(675)] = 23616, + [SMALL_STATE(676)] = 23692, + [SMALL_STATE(677)] = 23736, + [SMALL_STATE(678)] = 23776, + [SMALL_STATE(679)] = 23815, + [SMALL_STATE(680)] = 23854, + [SMALL_STATE(681)] = 23893, + [SMALL_STATE(682)] = 23932, + [SMALL_STATE(683)] = 24003, + [SMALL_STATE(684)] = 24042, + [SMALL_STATE(685)] = 24081, + [SMALL_STATE(686)] = 24120, + [SMALL_STATE(687)] = 24159, + [SMALL_STATE(688)] = 24198, + [SMALL_STATE(689)] = 24237, + [SMALL_STATE(690)] = 24276, + [SMALL_STATE(691)] = 24315, + [SMALL_STATE(692)] = 24354, + [SMALL_STATE(693)] = 24393, + [SMALL_STATE(694)] = 24446, + [SMALL_STATE(695)] = 24485, + [SMALL_STATE(696)] = 24524, + [SMALL_STATE(697)] = 24563, + [SMALL_STATE(698)] = 24620, + [SMALL_STATE(699)] = 24659, + [SMALL_STATE(700)] = 24728, + [SMALL_STATE(701)] = 24767, + [SMALL_STATE(702)] = 24834, + [SMALL_STATE(703)] = 24873, + [SMALL_STATE(704)] = 24940, + [SMALL_STATE(705)] = 25005, + [SMALL_STATE(706)] = 25068, + [SMALL_STATE(707)] = 25141, + [SMALL_STATE(708)] = 25214, + [SMALL_STATE(709)] = 25269, + [SMALL_STATE(710)] = 25308, + [SMALL_STATE(711)] = 25365, + [SMALL_STATE(712)] = 25426, + [SMALL_STATE(713)] = 25464, + [SMALL_STATE(714)] = 25502, + [SMALL_STATE(715)] = 25540, + [SMALL_STATE(716)] = 25578, + [SMALL_STATE(717)] = 25616, + [SMALL_STATE(718)] = 25653, + [SMALL_STATE(719)] = 25690, + [SMALL_STATE(720)] = 25727, + [SMALL_STATE(721)] = 25764, + [SMALL_STATE(722)] = 25801, + [SMALL_STATE(723)] = 25838, + [SMALL_STATE(724)] = 25875, + [SMALL_STATE(725)] = 25950, + [SMALL_STATE(726)] = 25987, + [SMALL_STATE(727)] = 26024, + [SMALL_STATE(728)] = 26061, + [SMALL_STATE(729)] = 26098, + [SMALL_STATE(730)] = 26147, + [SMALL_STATE(731)] = 26184, + [SMALL_STATE(732)] = 26221, + [SMALL_STATE(733)] = 26258, + [SMALL_STATE(734)] = 26307, + [SMALL_STATE(735)] = 26344, + [SMALL_STATE(736)] = 26381, + [SMALL_STATE(737)] = 26422, + [SMALL_STATE(738)] = 26471, + [SMALL_STATE(739)] = 26508, + [SMALL_STATE(740)] = 26545, + [SMALL_STATE(741)] = 26582, + [SMALL_STATE(742)] = 26657, + [SMALL_STATE(743)] = 26694, + [SMALL_STATE(744)] = 26743, + [SMALL_STATE(745)] = 26780, + [SMALL_STATE(746)] = 26821, + [SMALL_STATE(747)] = 26858, + [SMALL_STATE(748)] = 26895, + [SMALL_STATE(749)] = 26932, + [SMALL_STATE(750)] = 26969, + [SMALL_STATE(751)] = 27006, + [SMALL_STATE(752)] = 27043, + [SMALL_STATE(753)] = 27084, + [SMALL_STATE(754)] = 27121, + [SMALL_STATE(755)] = 27196, + [SMALL_STATE(756)] = 27269, + [SMALL_STATE(757)] = 27310, + [SMALL_STATE(758)] = 27351, + [SMALL_STATE(759)] = 27388, + [SMALL_STATE(760)] = 27425, + [SMALL_STATE(761)] = 27500, + [SMALL_STATE(762)] = 27537, + [SMALL_STATE(763)] = 27574, + [SMALL_STATE(764)] = 27611, + [SMALL_STATE(765)] = 27648, + [SMALL_STATE(766)] = 27685, + [SMALL_STATE(767)] = 27722, + [SMALL_STATE(768)] = 27759, + [SMALL_STATE(769)] = 27796, + [SMALL_STATE(770)] = 27868, + [SMALL_STATE(771)] = 27940, + [SMALL_STATE(772)] = 28012, + [SMALL_STATE(773)] = 28084, + [SMALL_STATE(774)] = 28156, + [SMALL_STATE(775)] = 28228, + [SMALL_STATE(776)] = 28300, + [SMALL_STATE(777)] = 28372, + [SMALL_STATE(778)] = 28444, + [SMALL_STATE(779)] = 28514, + [SMALL_STATE(780)] = 28586, + [SMALL_STATE(781)] = 28658, + [SMALL_STATE(782)] = 28730, + [SMALL_STATE(783)] = 28790, + [SMALL_STATE(784)] = 28862, + [SMALL_STATE(785)] = 28934, + [SMALL_STATE(786)] = 29006, + [SMALL_STATE(787)] = 29078, + [SMALL_STATE(788)] = 29148, + [SMALL_STATE(789)] = 29220, + [SMALL_STATE(790)] = 29264, + [SMALL_STATE(791)] = 29336, + [SMALL_STATE(792)] = 29406, + [SMALL_STATE(793)] = 29478, + [SMALL_STATE(794)] = 29550, + [SMALL_STATE(795)] = 29622, + [SMALL_STATE(796)] = 29694, + [SMALL_STATE(797)] = 29764, + [SMALL_STATE(798)] = 29836, + [SMALL_STATE(799)] = 29908, + [SMALL_STATE(800)] = 29978, + [SMALL_STATE(801)] = 30050, + [SMALL_STATE(802)] = 30122, + [SMALL_STATE(803)] = 30194, + [SMALL_STATE(804)] = 30266, + [SMALL_STATE(805)] = 30338, + [SMALL_STATE(806)] = 30410, + [SMALL_STATE(807)] = 30482, + [SMALL_STATE(808)] = 30554, + [SMALL_STATE(809)] = 30624, + [SMALL_STATE(810)] = 30696, + [SMALL_STATE(811)] = 30768, + [SMALL_STATE(812)] = 30840, + [SMALL_STATE(813)] = 30912, + [SMALL_STATE(814)] = 30984, + [SMALL_STATE(815)] = 31056, + [SMALL_STATE(816)] = 31128, + [SMALL_STATE(817)] = 31200, + [SMALL_STATE(818)] = 31272, + [SMALL_STATE(819)] = 31344, + [SMALL_STATE(820)] = 31416, + [SMALL_STATE(821)] = 31488, + [SMALL_STATE(822)] = 31560, + [SMALL_STATE(823)] = 31632, + [SMALL_STATE(824)] = 31704, + [SMALL_STATE(825)] = 31776, + [SMALL_STATE(826)] = 31848, + [SMALL_STATE(827)] = 31918, + [SMALL_STATE(828)] = 31990, + [SMALL_STATE(829)] = 32053, + [SMALL_STATE(830)] = 32112, + [SMALL_STATE(831)] = 32181, + [SMALL_STATE(832)] = 32250, + [SMALL_STATE(833)] = 32319, + [SMALL_STATE(834)] = 32388, + [SMALL_STATE(835)] = 32445, + [SMALL_STATE(836)] = 32514, + [SMALL_STATE(837)] = 32583, + [SMALL_STATE(838)] = 32640, + [SMALL_STATE(839)] = 32697, + [SMALL_STATE(840)] = 32754, + [SMALL_STATE(841)] = 32821, + [SMALL_STATE(842)] = 32890, + [SMALL_STATE(843)] = 32959, + [SMALL_STATE(844)] = 33008, + [SMALL_STATE(845)] = 33065, + [SMALL_STATE(846)] = 33130, + [SMALL_STATE(847)] = 33199, + [SMALL_STATE(848)] = 33268, + [SMALL_STATE(849)] = 33337, + [SMALL_STATE(850)] = 33406, + [SMALL_STATE(851)] = 33463, + [SMALL_STATE(852)] = 33526, + [SMALL_STATE(853)] = 33595, + [SMALL_STATE(854)] = 33664, + [SMALL_STATE(855)] = 33733, + [SMALL_STATE(856)] = 33790, + [SMALL_STATE(857)] = 33847, + [SMALL_STATE(858)] = 33900, + [SMALL_STATE(859)] = 33969, + [SMALL_STATE(860)] = 34038, + [SMALL_STATE(861)] = 34099, + [SMALL_STATE(862)] = 34168, + [SMALL_STATE(863)] = 34237, + [SMALL_STATE(864)] = 34306, + [SMALL_STATE(865)] = 34375, + [SMALL_STATE(866)] = 34432, + [SMALL_STATE(867)] = 34501, + [SMALL_STATE(868)] = 34558, + [SMALL_STATE(869)] = 34615, + [SMALL_STATE(870)] = 34684, + [SMALL_STATE(871)] = 34753, + [SMALL_STATE(872)] = 34810, + [SMALL_STATE(873)] = 34861, + [SMALL_STATE(874)] = 34918, + [SMALL_STATE(875)] = 34971, + [SMALL_STATE(876)] = 35040, + [SMALL_STATE(877)] = 35088, + [SMALL_STATE(878)] = 35136, + [SMALL_STATE(879)] = 35184, + [SMALL_STATE(880)] = 35232, + [SMALL_STATE(881)] = 35285, + [SMALL_STATE(882)] = 35324, + [SMALL_STATE(883)] = 35361, + [SMALL_STATE(884)] = 35414, + [SMALL_STATE(885)] = 35451, + [SMALL_STATE(886)] = 35488, + [SMALL_STATE(887)] = 35525, + [SMALL_STATE(888)] = 35578, + [SMALL_STATE(889)] = 35631, + [SMALL_STATE(890)] = 35668, + [SMALL_STATE(891)] = 35718, + [SMALL_STATE(892)] = 35768, + [SMALL_STATE(893)] = 35818, + [SMALL_STATE(894)] = 35868, + [SMALL_STATE(895)] = 35918, + [SMALL_STATE(896)] = 35968, + [SMALL_STATE(897)] = 36018, + [SMALL_STATE(898)] = 36054, + [SMALL_STATE(899)] = 36104, + [SMALL_STATE(900)] = 36154, + [SMALL_STATE(901)] = 36204, + [SMALL_STATE(902)] = 36235, + [SMALL_STATE(903)] = 36268, + [SMALL_STATE(904)] = 36299, + [SMALL_STATE(905)] = 36330, + [SMALL_STATE(906)] = 36361, + [SMALL_STATE(907)] = 36392, + [SMALL_STATE(908)] = 36423, + [SMALL_STATE(909)] = 36454, + [SMALL_STATE(910)] = 36485, + [SMALL_STATE(911)] = 36516, + [SMALL_STATE(912)] = 36547, + [SMALL_STATE(913)] = 36578, + [SMALL_STATE(914)] = 36609, + [SMALL_STATE(915)] = 36640, + [SMALL_STATE(916)] = 36671, + [SMALL_STATE(917)] = 36702, + [SMALL_STATE(918)] = 36733, + [SMALL_STATE(919)] = 36764, + [SMALL_STATE(920)] = 36795, + [SMALL_STATE(921)] = 36826, + [SMALL_STATE(922)] = 36857, + [SMALL_STATE(923)] = 36888, + [SMALL_STATE(924)] = 36919, + [SMALL_STATE(925)] = 36953, + [SMALL_STATE(926)] = 37008, + [SMALL_STATE(927)] = 37051, + [SMALL_STATE(928)] = 37106, + [SMALL_STATE(929)] = 37149, + [SMALL_STATE(930)] = 37184, + [SMALL_STATE(931)] = 37217, + [SMALL_STATE(932)] = 37257, + [SMALL_STATE(933)] = 37297, + [SMALL_STATE(934)] = 37325, + [SMALL_STATE(935)] = 37353, + [SMALL_STATE(936)] = 37393, + [SMALL_STATE(937)] = 37433, + [SMALL_STATE(938)] = 37473, + [SMALL_STATE(939)] = 37513, + [SMALL_STATE(940)] = 37553, + [SMALL_STATE(941)] = 37593, + [SMALL_STATE(942)] = 37633, + [SMALL_STATE(943)] = 37683, + [SMALL_STATE(944)] = 37723, + [SMALL_STATE(945)] = 37765, + [SMALL_STATE(946)] = 37807, + [SMALL_STATE(947)] = 37847, + [SMALL_STATE(948)] = 37887, + [SMALL_STATE(949)] = 37915, + [SMALL_STATE(950)] = 37963, + [SMALL_STATE(951)] = 38003, + [SMALL_STATE(952)] = 38043, + [SMALL_STATE(953)] = 38083, + [SMALL_STATE(954)] = 38123, + [SMALL_STATE(955)] = 38163, + [SMALL_STATE(956)] = 38205, + [SMALL_STATE(957)] = 38245, + [SMALL_STATE(958)] = 38285, + [SMALL_STATE(959)] = 38325, + [SMALL_STATE(960)] = 38353, + [SMALL_STATE(961)] = 38393, + [SMALL_STATE(962)] = 38421, + [SMALL_STATE(963)] = 38461, + [SMALL_STATE(964)] = 38493, + [SMALL_STATE(965)] = 38521, + [SMALL_STATE(966)] = 38561, + [SMALL_STATE(967)] = 38609, + [SMALL_STATE(968)] = 38655, + [SMALL_STATE(969)] = 38697, + [SMALL_STATE(970)] = 38743, + [SMALL_STATE(971)] = 38783, + [SMALL_STATE(972)] = 38827, + [SMALL_STATE(973)] = 38855, + [SMALL_STATE(974)] = 38897, + [SMALL_STATE(975)] = 38937, + [SMALL_STATE(976)] = 38977, + [SMALL_STATE(977)] = 39013, + [SMALL_STATE(978)] = 39053, + [SMALL_STATE(979)] = 39087, + [SMALL_STATE(980)] = 39115, + [SMALL_STATE(981)] = 39155, + [SMALL_STATE(982)] = 39197, + [SMALL_STATE(983)] = 39237, + [SMALL_STATE(984)] = 39277, + [SMALL_STATE(985)] = 39319, + [SMALL_STATE(986)] = 39347, + [SMALL_STATE(987)] = 39375, + [SMALL_STATE(988)] = 39415, + [SMALL_STATE(989)] = 39455, + [SMALL_STATE(990)] = 39495, + [SMALL_STATE(991)] = 39535, + [SMALL_STATE(992)] = 39575, + [SMALL_STATE(993)] = 39616, + [SMALL_STATE(994)] = 39661, + [SMALL_STATE(995)] = 39706, + [SMALL_STATE(996)] = 39747, + [SMALL_STATE(997)] = 39788, + [SMALL_STATE(998)] = 39833, + [SMALL_STATE(999)] = 39860, + [SMALL_STATE(1000)] = 39887, + [SMALL_STATE(1001)] = 39914, + [SMALL_STATE(1002)] = 39941, + [SMALL_STATE(1003)] = 39982, + [SMALL_STATE(1004)] = 40009, + [SMALL_STATE(1005)] = 40036, + [SMALL_STATE(1006)] = 40081, + [SMALL_STATE(1007)] = 40126, + [SMALL_STATE(1008)] = 40175, + [SMALL_STATE(1009)] = 40202, + [SMALL_STATE(1010)] = 40229, + [SMALL_STATE(1011)] = 40256, + [SMALL_STATE(1012)] = 40285, + [SMALL_STATE(1013)] = 40312, + [SMALL_STATE(1014)] = 40353, + [SMALL_STATE(1015)] = 40398, + [SMALL_STATE(1016)] = 40439, + [SMALL_STATE(1017)] = 40482, + [SMALL_STATE(1018)] = 40523, + [SMALL_STATE(1019)] = 40564, + [SMALL_STATE(1020)] = 40603, + [SMALL_STATE(1021)] = 40648, + [SMALL_STATE(1022)] = 40685, + [SMALL_STATE(1023)] = 40720, + [SMALL_STATE(1024)] = 40761, + [SMALL_STATE(1025)] = 40794, + [SMALL_STATE(1026)] = 40825, + [SMALL_STATE(1027)] = 40870, + [SMALL_STATE(1028)] = 40915, + [SMALL_STATE(1029)] = 40960, + [SMALL_STATE(1030)] = 41009, + [SMALL_STATE(1031)] = 41044, + [SMALL_STATE(1032)] = 41085, + [SMALL_STATE(1033)] = 41119, + [SMALL_STATE(1034)] = 41142, + [SMALL_STATE(1035)] = 41165, + [SMALL_STATE(1036)] = 41197, + [SMALL_STATE(1037)] = 41221, + [SMALL_STATE(1038)] = 41253, + [SMALL_STATE(1039)] = 41291, + [SMALL_STATE(1040)] = 41323, + [SMALL_STATE(1041)] = 41355, + [SMALL_STATE(1042)] = 41387, + [SMALL_STATE(1043)] = 41419, + [SMALL_STATE(1044)] = 41451, + [SMALL_STATE(1045)] = 41489, + [SMALL_STATE(1046)] = 41521, + [SMALL_STATE(1047)] = 41553, + [SMALL_STATE(1048)] = 41591, + [SMALL_STATE(1049)] = 41623, + [SMALL_STATE(1050)] = 41655, + [SMALL_STATE(1051)] = 41687, + [SMALL_STATE(1052)] = 41725, + [SMALL_STATE(1053)] = 41754, + [SMALL_STATE(1054)] = 41781, + [SMALL_STATE(1055)] = 41808, + [SMALL_STATE(1056)] = 41837, + [SMALL_STATE(1057)] = 41872, + [SMALL_STATE(1058)] = 41901, + [SMALL_STATE(1059)] = 41924, + [SMALL_STATE(1060)] = 41947, + [SMALL_STATE(1061)] = 41974, + [SMALL_STATE(1062)] = 42003, + [SMALL_STATE(1063)] = 42032, + [SMALL_STATE(1064)] = 42061, + [SMALL_STATE(1065)] = 42090, + [SMALL_STATE(1066)] = 42119, + [SMALL_STATE(1067)] = 42148, + [SMALL_STATE(1068)] = 42183, + [SMALL_STATE(1069)] = 42218, + [SMALL_STATE(1070)] = 42241, + [SMALL_STATE(1071)] = 42270, + [SMALL_STATE(1072)] = 42299, + [SMALL_STATE(1073)] = 42326, + [SMALL_STATE(1074)] = 42355, + [SMALL_STATE(1075)] = 42384, + [SMALL_STATE(1076)] = 42413, + [SMALL_STATE(1077)] = 42442, + [SMALL_STATE(1078)] = 42471, + [SMALL_STATE(1079)] = 42498, + [SMALL_STATE(1080)] = 42521, + [SMALL_STATE(1081)] = 42548, + [SMALL_STATE(1082)] = 42577, + [SMALL_STATE(1083)] = 42603, + [SMALL_STATE(1084)] = 42627, + [SMALL_STATE(1085)] = 42659, + [SMALL_STATE(1086)] = 42691, + [SMALL_STATE(1087)] = 42709, + [SMALL_STATE(1088)] = 42741, + [SMALL_STATE(1089)] = 42771, + [SMALL_STATE(1090)] = 42797, + [SMALL_STATE(1091)] = 42823, + [SMALL_STATE(1092)] = 42841, + [SMALL_STATE(1093)] = 42865, + [SMALL_STATE(1094)] = 42891, + [SMALL_STATE(1095)] = 42909, + [SMALL_STATE(1096)] = 42931, + [SMALL_STATE(1097)] = 42963, + [SMALL_STATE(1098)] = 42984, + [SMALL_STATE(1099)] = 43013, + [SMALL_STATE(1100)] = 43034, + [SMALL_STATE(1101)] = 43059, + [SMALL_STATE(1102)] = 43088, + [SMALL_STATE(1103)] = 43109, + [SMALL_STATE(1104)] = 43138, + [SMALL_STATE(1105)] = 43159, + [SMALL_STATE(1106)] = 43188, + [SMALL_STATE(1107)] = 43209, + [SMALL_STATE(1108)] = 43238, + [SMALL_STATE(1109)] = 43263, + [SMALL_STATE(1110)] = 43290, + [SMALL_STATE(1111)] = 43315, + [SMALL_STATE(1112)] = 43340, + [SMALL_STATE(1113)] = 43369, + [SMALL_STATE(1114)] = 43398, + [SMALL_STATE(1115)] = 43427, + [SMALL_STATE(1116)] = 43443, + [SMALL_STATE(1117)] = 43459, + [SMALL_STATE(1118)] = 43483, + [SMALL_STATE(1119)] = 43501, + [SMALL_STATE(1120)] = 43521, + [SMALL_STATE(1121)] = 43541, + [SMALL_STATE(1122)] = 43567, + [SMALL_STATE(1123)] = 43591, + [SMALL_STATE(1124)] = 43617, + [SMALL_STATE(1125)] = 43633, + [SMALL_STATE(1126)] = 43649, + [SMALL_STATE(1127)] = 43675, + [SMALL_STATE(1128)] = 43695, + [SMALL_STATE(1129)] = 43721, + [SMALL_STATE(1130)] = 43737, + [SMALL_STATE(1131)] = 43753, + [SMALL_STATE(1132)] = 43776, + [SMALL_STATE(1133)] = 43791, + [SMALL_STATE(1134)] = 43808, + [SMALL_STATE(1135)] = 43831, + [SMALL_STATE(1136)] = 43846, + [SMALL_STATE(1137)] = 43861, + [SMALL_STATE(1138)] = 43876, + [SMALL_STATE(1139)] = 43891, + [SMALL_STATE(1140)] = 43908, + [SMALL_STATE(1141)] = 43923, + [SMALL_STATE(1142)] = 43946, + [SMALL_STATE(1143)] = 43961, + [SMALL_STATE(1144)] = 43976, + [SMALL_STATE(1145)] = 43992, + [SMALL_STATE(1146)] = 44010, + [SMALL_STATE(1147)] = 44026, + [SMALL_STATE(1148)] = 44042, + [SMALL_STATE(1149)] = 44056, + [SMALL_STATE(1150)] = 44074, + [SMALL_STATE(1151)] = 44092, + [SMALL_STATE(1152)] = 44110, + [SMALL_STATE(1153)] = 44124, + [SMALL_STATE(1154)] = 44138, + [SMALL_STATE(1155)] = 44152, + [SMALL_STATE(1156)] = 44166, + [SMALL_STATE(1157)] = 44184, + [SMALL_STATE(1158)] = 44198, + [SMALL_STATE(1159)] = 44212, + [SMALL_STATE(1160)] = 44230, + [SMALL_STATE(1161)] = 44244, + [SMALL_STATE(1162)] = 44258, + [SMALL_STATE(1163)] = 44276, + [SMALL_STATE(1164)] = 44290, + [SMALL_STATE(1165)] = 44308, + [SMALL_STATE(1166)] = 44322, + [SMALL_STATE(1167)] = 44333, + [SMALL_STATE(1168)] = 44344, + [SMALL_STATE(1169)] = 44355, + [SMALL_STATE(1170)] = 44366, + [SMALL_STATE(1171)] = 44377, + [SMALL_STATE(1172)] = 44388, + [SMALL_STATE(1173)] = 44405, + [SMALL_STATE(1174)] = 44416, + [SMALL_STATE(1175)] = 44435, + [SMALL_STATE(1176)] = 44446, + [SMALL_STATE(1177)] = 44463, + [SMALL_STATE(1178)] = 44482, + [SMALL_STATE(1179)] = 44493, + [SMALL_STATE(1180)] = 44504, + [SMALL_STATE(1181)] = 44515, + [SMALL_STATE(1182)] = 44526, + [SMALL_STATE(1183)] = 44542, + [SMALL_STATE(1184)] = 44558, + [SMALL_STATE(1185)] = 44574, + [SMALL_STATE(1186)] = 44590, + [SMALL_STATE(1187)] = 44604, + [SMALL_STATE(1188)] = 44618, + [SMALL_STATE(1189)] = 44632, + [SMALL_STATE(1190)] = 44648, + [SMALL_STATE(1191)] = 44664, + [SMALL_STATE(1192)] = 44680, + [SMALL_STATE(1193)] = 44696, + [SMALL_STATE(1194)] = 44706, + [SMALL_STATE(1195)] = 44722, + [SMALL_STATE(1196)] = 44736, + [SMALL_STATE(1197)] = 44752, + [SMALL_STATE(1198)] = 44766, + [SMALL_STATE(1199)] = 44780, + [SMALL_STATE(1200)] = 44796, + [SMALL_STATE(1201)] = 44810, + [SMALL_STATE(1202)] = 44824, + [SMALL_STATE(1203)] = 44840, + [SMALL_STATE(1204)] = 44854, + [SMALL_STATE(1205)] = 44870, + [SMALL_STATE(1206)] = 44886, + [SMALL_STATE(1207)] = 44902, + [SMALL_STATE(1208)] = 44918, + [SMALL_STATE(1209)] = 44932, + [SMALL_STATE(1210)] = 44945, + [SMALL_STATE(1211)] = 44958, + [SMALL_STATE(1212)] = 44971, + [SMALL_STATE(1213)] = 44980, + [SMALL_STATE(1214)] = 44993, + [SMALL_STATE(1215)] = 45002, + [SMALL_STATE(1216)] = 45015, + [SMALL_STATE(1217)] = 45028, + [SMALL_STATE(1218)] = 45041, + [SMALL_STATE(1219)] = 45054, + [SMALL_STATE(1220)] = 45067, + [SMALL_STATE(1221)] = 45080, + [SMALL_STATE(1222)] = 45093, + [SMALL_STATE(1223)] = 45102, + [SMALL_STATE(1224)] = 45115, + [SMALL_STATE(1225)] = 45124, + [SMALL_STATE(1226)] = 45137, + [SMALL_STATE(1227)] = 45150, + [SMALL_STATE(1228)] = 45163, + [SMALL_STATE(1229)] = 45172, + [SMALL_STATE(1230)] = 45185, + [SMALL_STATE(1231)] = 45194, + [SMALL_STATE(1232)] = 45207, + [SMALL_STATE(1233)] = 45220, + [SMALL_STATE(1234)] = 45233, + [SMALL_STATE(1235)] = 45246, + [SMALL_STATE(1236)] = 45259, + [SMALL_STATE(1237)] = 45270, + [SMALL_STATE(1238)] = 45283, + [SMALL_STATE(1239)] = 45296, + [SMALL_STATE(1240)] = 45309, + [SMALL_STATE(1241)] = 45322, + [SMALL_STATE(1242)] = 45335, + [SMALL_STATE(1243)] = 45348, + [SMALL_STATE(1244)] = 45361, + [SMALL_STATE(1245)] = 45370, + [SMALL_STATE(1246)] = 45383, + [SMALL_STATE(1247)] = 45396, + [SMALL_STATE(1248)] = 45409, + [SMALL_STATE(1249)] = 45422, + [SMALL_STATE(1250)] = 45435, + [SMALL_STATE(1251)] = 45448, + [SMALL_STATE(1252)] = 45461, + [SMALL_STATE(1253)] = 45474, + [SMALL_STATE(1254)] = 45487, + [SMALL_STATE(1255)] = 45500, + [SMALL_STATE(1256)] = 45513, + [SMALL_STATE(1257)] = 45522, + [SMALL_STATE(1258)] = 45535, + [SMALL_STATE(1259)] = 45548, + [SMALL_STATE(1260)] = 45561, + [SMALL_STATE(1261)] = 45574, + [SMALL_STATE(1262)] = 45587, + [SMALL_STATE(1263)] = 45600, + [SMALL_STATE(1264)] = 45613, + [SMALL_STATE(1265)] = 45626, + [SMALL_STATE(1266)] = 45639, + [SMALL_STATE(1267)] = 45652, + [SMALL_STATE(1268)] = 45665, + [SMALL_STATE(1269)] = 45678, + [SMALL_STATE(1270)] = 45691, + [SMALL_STATE(1271)] = 45702, + [SMALL_STATE(1272)] = 45715, + [SMALL_STATE(1273)] = 45728, + [SMALL_STATE(1274)] = 45741, + [SMALL_STATE(1275)] = 45754, + [SMALL_STATE(1276)] = 45767, + [SMALL_STATE(1277)] = 45780, + [SMALL_STATE(1278)] = 45793, + [SMALL_STATE(1279)] = 45806, + [SMALL_STATE(1280)] = 45815, + [SMALL_STATE(1281)] = 45828, + [SMALL_STATE(1282)] = 45841, + [SMALL_STATE(1283)] = 45854, + [SMALL_STATE(1284)] = 45867, + [SMALL_STATE(1285)] = 45880, + [SMALL_STATE(1286)] = 45893, + [SMALL_STATE(1287)] = 45906, + [SMALL_STATE(1288)] = 45919, + [SMALL_STATE(1289)] = 45932, + [SMALL_STATE(1290)] = 45945, + [SMALL_STATE(1291)] = 45958, + [SMALL_STATE(1292)] = 45971, + [SMALL_STATE(1293)] = 45984, + [SMALL_STATE(1294)] = 45997, + [SMALL_STATE(1295)] = 46010, + [SMALL_STATE(1296)] = 46023, + [SMALL_STATE(1297)] = 46036, + [SMALL_STATE(1298)] = 46049, + [SMALL_STATE(1299)] = 46062, + [SMALL_STATE(1300)] = 46075, + [SMALL_STATE(1301)] = 46088, + [SMALL_STATE(1302)] = 46101, + [SMALL_STATE(1303)] = 46111, + [SMALL_STATE(1304)] = 46121, + [SMALL_STATE(1305)] = 46131, + [SMALL_STATE(1306)] = 46139, + [SMALL_STATE(1307)] = 46147, + [SMALL_STATE(1308)] = 46155, + [SMALL_STATE(1309)] = 46165, + [SMALL_STATE(1310)] = 46173, + [SMALL_STATE(1311)] = 46181, + [SMALL_STATE(1312)] = 46191, + [SMALL_STATE(1313)] = 46201, + [SMALL_STATE(1314)] = 46209, + [SMALL_STATE(1315)] = 46219, + [SMALL_STATE(1316)] = 46229, + [SMALL_STATE(1317)] = 46239, + [SMALL_STATE(1318)] = 46249, + [SMALL_STATE(1319)] = 46259, + [SMALL_STATE(1320)] = 46269, + [SMALL_STATE(1321)] = 46279, + [SMALL_STATE(1322)] = 46287, + [SMALL_STATE(1323)] = 46297, + [SMALL_STATE(1324)] = 46307, + [SMALL_STATE(1325)] = 46317, + [SMALL_STATE(1326)] = 46327, + [SMALL_STATE(1327)] = 46337, + [SMALL_STATE(1328)] = 46345, + [SMALL_STATE(1329)] = 46355, + [SMALL_STATE(1330)] = 46365, + [SMALL_STATE(1331)] = 46375, + [SMALL_STATE(1332)] = 46383, + [SMALL_STATE(1333)] = 46393, + [SMALL_STATE(1334)] = 46403, + [SMALL_STATE(1335)] = 46411, + [SMALL_STATE(1336)] = 46421, + [SMALL_STATE(1337)] = 46431, + [SMALL_STATE(1338)] = 46441, + [SMALL_STATE(1339)] = 46449, + [SMALL_STATE(1340)] = 46459, + [SMALL_STATE(1341)] = 46467, + [SMALL_STATE(1342)] = 46475, + [SMALL_STATE(1343)] = 46485, + [SMALL_STATE(1344)] = 46495, + [SMALL_STATE(1345)] = 46505, + [SMALL_STATE(1346)] = 46513, + [SMALL_STATE(1347)] = 46523, + [SMALL_STATE(1348)] = 46533, + [SMALL_STATE(1349)] = 46543, + [SMALL_STATE(1350)] = 46553, + [SMALL_STATE(1351)] = 46563, + [SMALL_STATE(1352)] = 46571, + [SMALL_STATE(1353)] = 46579, + [SMALL_STATE(1354)] = 46589, + [SMALL_STATE(1355)] = 46599, + [SMALL_STATE(1356)] = 46609, + [SMALL_STATE(1357)] = 46619, + [SMALL_STATE(1358)] = 46629, + [SMALL_STATE(1359)] = 46637, + [SMALL_STATE(1360)] = 46647, + [SMALL_STATE(1361)] = 46655, + [SMALL_STATE(1362)] = 46663, + [SMALL_STATE(1363)] = 46673, + [SMALL_STATE(1364)] = 46681, + [SMALL_STATE(1365)] = 46691, + [SMALL_STATE(1366)] = 46699, + [SMALL_STATE(1367)] = 46707, + [SMALL_STATE(1368)] = 46717, + [SMALL_STATE(1369)] = 46724, + [SMALL_STATE(1370)] = 46731, + [SMALL_STATE(1371)] = 46738, + [SMALL_STATE(1372)] = 46745, + [SMALL_STATE(1373)] = 46752, + [SMALL_STATE(1374)] = 46759, + [SMALL_STATE(1375)] = 46766, + [SMALL_STATE(1376)] = 46773, + [SMALL_STATE(1377)] = 46780, + [SMALL_STATE(1378)] = 46787, + [SMALL_STATE(1379)] = 46794, + [SMALL_STATE(1380)] = 46801, + [SMALL_STATE(1381)] = 46808, + [SMALL_STATE(1382)] = 46815, + [SMALL_STATE(1383)] = 46822, + [SMALL_STATE(1384)] = 46829, + [SMALL_STATE(1385)] = 46836, + [SMALL_STATE(1386)] = 46843, + [SMALL_STATE(1387)] = 46850, + [SMALL_STATE(1388)] = 46857, + [SMALL_STATE(1389)] = 46864, + [SMALL_STATE(1390)] = 46871, + [SMALL_STATE(1391)] = 46878, + [SMALL_STATE(1392)] = 46885, + [SMALL_STATE(1393)] = 46892, + [SMALL_STATE(1394)] = 46899, + [SMALL_STATE(1395)] = 46906, + [SMALL_STATE(1396)] = 46913, + [SMALL_STATE(1397)] = 46920, + [SMALL_STATE(1398)] = 46927, + [SMALL_STATE(1399)] = 46934, + [SMALL_STATE(1400)] = 46941, + [SMALL_STATE(1401)] = 46948, + [SMALL_STATE(1402)] = 46955, + [SMALL_STATE(1403)] = 46962, + [SMALL_STATE(1404)] = 46969, + [SMALL_STATE(1405)] = 46976, + [SMALL_STATE(1406)] = 46983, + [SMALL_STATE(1407)] = 46990, + [SMALL_STATE(1408)] = 46997, + [SMALL_STATE(1409)] = 47004, + [SMALL_STATE(1410)] = 47011, + [SMALL_STATE(1411)] = 47018, + [SMALL_STATE(1412)] = 47025, + [SMALL_STATE(1413)] = 47032, + [SMALL_STATE(1414)] = 47039, + [SMALL_STATE(1415)] = 47046, + [SMALL_STATE(1416)] = 47053, + [SMALL_STATE(1417)] = 47060, + [SMALL_STATE(1418)] = 47067, + [SMALL_STATE(1419)] = 47074, + [SMALL_STATE(1420)] = 47081, + [SMALL_STATE(1421)] = 47088, + [SMALL_STATE(1422)] = 47095, + [SMALL_STATE(1423)] = 47102, + [SMALL_STATE(1424)] = 47109, + [SMALL_STATE(1425)] = 47116, + [SMALL_STATE(1426)] = 47123, + [SMALL_STATE(1427)] = 47130, + [SMALL_STATE(1428)] = 47137, + [SMALL_STATE(1429)] = 47144, + [SMALL_STATE(1430)] = 47151, + [SMALL_STATE(1431)] = 47158, + [SMALL_STATE(1432)] = 47165, + [SMALL_STATE(1433)] = 47172, + [SMALL_STATE(1434)] = 47179, + [SMALL_STATE(1435)] = 47186, + [SMALL_STATE(1436)] = 47193, + [SMALL_STATE(1437)] = 47200, + [SMALL_STATE(1438)] = 47207, + [SMALL_STATE(1439)] = 47214, + [SMALL_STATE(1440)] = 47221, + [SMALL_STATE(1441)] = 47228, + [SMALL_STATE(1442)] = 47235, + [SMALL_STATE(1443)] = 47242, + [SMALL_STATE(1444)] = 47249, + [SMALL_STATE(1445)] = 47256, + [SMALL_STATE(1446)] = 47263, + [SMALL_STATE(1447)] = 47270, + [SMALL_STATE(1448)] = 47277, + [SMALL_STATE(1449)] = 47284, + [SMALL_STATE(1450)] = 47291, + [SMALL_STATE(1451)] = 47298, + [SMALL_STATE(1452)] = 47305, + [SMALL_STATE(1453)] = 47312, + [SMALL_STATE(1454)] = 47319, + [SMALL_STATE(1455)] = 47326, + [SMALL_STATE(1456)] = 47333, + [SMALL_STATE(1457)] = 47340, + [SMALL_STATE(1458)] = 47347, + [SMALL_STATE(1459)] = 47354, + [SMALL_STATE(1460)] = 47361, + [SMALL_STATE(1461)] = 47368, + [SMALL_STATE(1462)] = 47375, + [SMALL_STATE(1463)] = 47382, + [SMALL_STATE(1464)] = 47389, + [SMALL_STATE(1465)] = 47396, + [SMALL_STATE(1466)] = 47403, + [SMALL_STATE(1467)] = 47410, + [SMALL_STATE(1468)] = 47417, + [SMALL_STATE(1469)] = 47424, + [SMALL_STATE(1470)] = 47431, + [SMALL_STATE(1471)] = 47438, + [SMALL_STATE(1472)] = 47445, + [SMALL_STATE(1473)] = 47452, + [SMALL_STATE(1474)] = 47459, + [SMALL_STATE(1475)] = 47466, + [SMALL_STATE(1476)] = 47473, + [SMALL_STATE(1477)] = 47480, + [SMALL_STATE(1478)] = 47487, + [SMALL_STATE(1479)] = 47494, + [SMALL_STATE(1480)] = 47501, + [SMALL_STATE(1481)] = 47508, + [SMALL_STATE(1482)] = 47515, + [SMALL_STATE(1483)] = 47522, + [SMALL_STATE(1484)] = 47529, + [SMALL_STATE(1485)] = 47536, + [SMALL_STATE(1486)] = 47543, + [SMALL_STATE(1487)] = 47550, + [SMALL_STATE(1488)] = 47557, + [SMALL_STATE(1489)] = 47564, + [SMALL_STATE(1490)] = 47571, + [SMALL_STATE(1491)] = 47578, + [SMALL_STATE(1492)] = 47585, + [SMALL_STATE(1493)] = 47592, + [SMALL_STATE(1494)] = 47599, + [SMALL_STATE(1495)] = 47606, + [SMALL_STATE(1496)] = 47613, + [SMALL_STATE(1497)] = 47620, + [SMALL_STATE(1498)] = 47627, + [SMALL_STATE(1499)] = 47634, + [SMALL_STATE(1500)] = 47641, + [SMALL_STATE(1501)] = 47648, + [SMALL_STATE(1502)] = 47655, + [SMALL_STATE(1503)] = 47662, + [SMALL_STATE(1504)] = 47669, + [SMALL_STATE(1505)] = 47676, + [SMALL_STATE(1506)] = 47683, + [SMALL_STATE(1507)] = 47690, + [SMALL_STATE(1508)] = 47697, + [SMALL_STATE(1509)] = 47704, + [SMALL_STATE(1510)] = 47711, + [SMALL_STATE(1511)] = 47718, + [SMALL_STATE(1512)] = 47725, + [SMALL_STATE(1513)] = 47732, + [SMALL_STATE(1514)] = 47739, + [SMALL_STATE(1515)] = 47746, + [SMALL_STATE(1516)] = 47753, + [SMALL_STATE(1517)] = 47760, + [SMALL_STATE(1518)] = 47767, + [SMALL_STATE(1519)] = 47774, + [SMALL_STATE(1520)] = 47781, + [SMALL_STATE(1521)] = 47788, + [SMALL_STATE(1522)] = 47795, + [SMALL_STATE(1523)] = 47802, + [SMALL_STATE(1524)] = 47809, + [SMALL_STATE(1525)] = 47816, + [SMALL_STATE(1526)] = 47823, + [SMALL_STATE(1527)] = 47830, + [SMALL_STATE(1528)] = 47837, + [SMALL_STATE(1529)] = 47844, + [SMALL_STATE(1530)] = 47851, + [SMALL_STATE(1531)] = 47858, + [SMALL_STATE(1532)] = 47865, + [SMALL_STATE(1533)] = 47872, + [SMALL_STATE(1534)] = 47879, + [SMALL_STATE(1535)] = 47886, + [SMALL_STATE(1536)] = 47893, + [SMALL_STATE(1537)] = 47900, + [SMALL_STATE(1538)] = 47907, + [SMALL_STATE(1539)] = 47914, + [SMALL_STATE(1540)] = 47921, + [SMALL_STATE(1541)] = 47928, + [SMALL_STATE(1542)] = 47935, + [SMALL_STATE(1543)] = 47942, + [SMALL_STATE(1544)] = 47949, + [SMALL_STATE(1545)] = 47956, + [SMALL_STATE(1546)] = 47963, + [SMALL_STATE(1547)] = 47970, + [SMALL_STATE(1548)] = 47977, + [SMALL_STATE(1549)] = 47984, + [SMALL_STATE(1550)] = 47991, + [SMALL_STATE(1551)] = 47998, + [SMALL_STATE(1552)] = 48005, + [SMALL_STATE(1553)] = 48012, + [SMALL_STATE(1554)] = 48019, + [SMALL_STATE(1555)] = 48026, + [SMALL_STATE(1556)] = 48033, + [SMALL_STATE(1557)] = 48040, + [SMALL_STATE(1558)] = 48047, + [SMALL_STATE(1559)] = 48054, + [SMALL_STATE(1560)] = 48061, + [SMALL_STATE(1561)] = 48068, + [SMALL_STATE(1562)] = 48075, + [SMALL_STATE(1563)] = 48082, + [SMALL_STATE(1564)] = 48089, + [SMALL_STATE(1565)] = 48096, + [SMALL_STATE(1566)] = 48103, + [SMALL_STATE(1567)] = 48110, + [SMALL_STATE(1568)] = 48117, + [SMALL_STATE(1569)] = 48124, + [SMALL_STATE(1570)] = 48131, + [SMALL_STATE(1571)] = 48138, + [SMALL_STATE(1572)] = 48145, + [SMALL_STATE(1573)] = 48152, + [SMALL_STATE(1574)] = 48159, + [SMALL_STATE(1575)] = 48166, + [SMALL_STATE(1576)] = 48173, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -87614,1766 +87963,1768 @@ 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(415), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(421), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1093), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1479), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(966), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(423), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1097), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1483), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(956), [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1480), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1348), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(381), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(553), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(553), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(501), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(98), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(893), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(727), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1560), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1359), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1551), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(916), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(710), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(703), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(786), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(909), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1164), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1168), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1345), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1315), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(533), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1513), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1484), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1349), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(379), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(536), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(536), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(553), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(100), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(894), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(752), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1564), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1362), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1555), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(923), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(716), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(696), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(789), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(920), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1226), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1177), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1347), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1322), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(575), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1517), [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1342), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(109), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1570), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(441), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1510), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1504), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(552), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1509), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1503), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1157), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(635), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(206), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1574), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1508), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1505), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1490), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(568), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(569), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1513), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1507), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(606), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1334), [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1183), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(635), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1095), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1414), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(963), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1415), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1319), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(295), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(763), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1317), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(503), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1429), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1300), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(123), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1568), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(462), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1396), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(415), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1101), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1571), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(930), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1567), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1361), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(257), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(886), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(717), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1353), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1352), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(538), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1533), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1351), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(175), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(479), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1520), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1519), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1511), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(420), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1100), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1528), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(974), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1508), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1323), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(268), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(895), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(752), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1331), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1343), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(527), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1333), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(167), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(463), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1399), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1512), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(416), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(606), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(424), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1575), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(951), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1571), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1364), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(293), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(893), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(745), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1357), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1356), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(512), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1537), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1355), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1529), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(458), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1524), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1523), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1515), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(420), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1106), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(953), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1512), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1367), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(268), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(891), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(756), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1346), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(560), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1409), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(122), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1576), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(480), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1394), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1516), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(419), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1099), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1418), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(960), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1419), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1323), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(234), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(895), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1312), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1324), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(524), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1433), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1304), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(203), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(461), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1438), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1440), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1425), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(421), [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(553), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(553), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(501), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(98), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(893), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(710), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1560), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1359), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1551), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(703), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(786), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(909), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1164), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1168), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1345), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1315), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(379), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(553), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(894), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(716), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1564), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1362), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1555), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(696), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(789), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(920), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1226), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1177), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1174), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1347), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1322), [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1342), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(109), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1570), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1510), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1504), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(552), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1509), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1503), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1157), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(635), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(206), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1574), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(469), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1508), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1505), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1490), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1513), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1507), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1334), [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1183), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(635), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(422), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(268), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(895), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1333), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(167), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1572), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(463), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1399), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1388), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1512), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(418), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(295), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(896), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1308), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1317), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1300), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(123), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1568), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(462), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1396), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1421), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(419), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(257), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(886), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1353), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1352), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1351), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(175), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(479), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1520), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1519), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1511), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 51), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 51), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 87), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 87), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 88), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 88), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(426), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(234), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(895), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1312), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1324), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1304), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(203), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1572), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(461), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1438), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1425), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(425), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(293), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(893), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1357), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1356), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1355), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(155), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1529), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(458), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1524), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1523), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1515), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(422), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(268), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(891), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1346), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(122), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1576), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(480), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1405), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1394), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1516), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 96), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 96), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 77), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 77), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 78), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 78), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 89), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 89), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 77), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 77), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 65), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 65), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 105), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 105), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 98), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 98), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 97), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 97), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 96), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 96), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(640), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(553), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(553), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(501), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(268), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1320), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(21), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1331), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1343), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1401), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1333), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(167), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(463), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1399), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1388), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1512), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(552), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(507), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1509), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1503), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1157), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(635), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1335), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1183), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(635), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(641), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(295), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1308), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1317), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(503), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1429), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1300), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(123), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1568), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(462), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1396), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1421), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 58), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 58), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 57), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 57), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 56), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 56), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 53), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 53), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(639), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(257), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1353), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1352), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(538), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1533), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1351), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(175), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(479), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1520), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1519), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1511), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(638), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(98), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(24), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1345), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1315), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(533), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1513), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1342), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(109), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1570), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1510), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1504), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1486), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1528] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(879), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(908), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1529), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(964), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1328), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(710), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1560), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(703), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(786), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(909), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1224), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1164), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1168), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1507), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(972), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1534), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1329), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1530), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(968), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1494), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1324), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(498), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1183), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 54), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 54), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 103), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 103), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 104), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 104), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 95), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 95), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 94), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 94), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 108), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 108), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 79), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 79), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 46), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 46), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 81), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 81), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 82), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 82), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 55), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 55), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(672), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(710), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1560), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1314), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1551), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(703), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 51), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 51), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 57), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 57), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 58), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 58), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 86), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 86), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(757), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(913), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 63), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 85), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 50), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(703), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(879), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 64), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 64), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 105), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 105), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 98), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 98), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 97), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 97), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 90), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 90), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 89), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 89), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 88), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 88), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 87), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 87), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 52), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 52), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 78), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 78), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 66), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 66), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 58), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 58), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 73), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 73), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(645), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(379), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(536), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(536), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(553), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(268), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(26), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1335), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1346), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(560), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1409), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(122), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1576), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(480), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1405), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1394), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1516), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(568), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(569), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1513), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1507), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1146), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(606), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1334), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1183), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(606), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(642), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(293), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1357), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1356), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(512), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1537), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1355), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(155), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1529), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(458), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1524), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1523), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1515), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(644), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(100), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1347), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1322), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(575), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1517), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1342), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(206), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1574), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(469), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1508), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1505), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1490), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(643), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(234), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(36), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1312), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1324), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(524), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1433), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1304), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(203), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(461), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1438), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1440), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1425), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1532] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(887), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(902), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1533), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(958), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1336), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(716), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1564), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1318), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1555), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(696), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(789), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(920), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1226), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1177), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1174), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1511), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(989), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1536), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1333), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1534), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(954), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1498), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1330), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(502), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1183), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 103), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 103), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 95), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 95), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 94), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 94), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 104), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 104), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 79), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 79), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 108), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 108), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 81), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 81), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 82), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 82), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(676), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(716), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1564), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1318), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1555), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(696), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 52), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 52), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 86), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 86), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(736), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(921), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 64), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 85), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 51), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(696), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(887), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 47), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 47), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2576] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(879), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2580] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(887), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1030), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1029), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1442), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1359), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1034), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1033), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1446), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 83), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1362), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1560), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1564), [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 83), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 48), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 83), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 48), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 48), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 83), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 49), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 49), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 49), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 49), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 84), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 84), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 49), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 49), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 49), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 49), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 84), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 84), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 49), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 49), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 60), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 49), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 49), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 48), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 84), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 84), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1200), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(575), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1420), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 84), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 49), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 74), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 71), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 49), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 83), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 83), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 50), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 50), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 50), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 50), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 71), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 71), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 84), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 84), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 84), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 84), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(513), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1424), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1193), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 61), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 84), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 84), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 74), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 71), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 50), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 60), [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 59), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 92), SHIFT_REPEAT(1116), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 92), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 80), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 67), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 106), SHIFT_REPEAT(1146), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 106), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 67), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 80), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 93), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1195), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1195), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 92), SHIFT_REPEAT(1115), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 92), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 101), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 102), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 50), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 84), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 80), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 67), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 92), SHIFT_REPEAT(1120), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 92), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 80), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 93), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1199), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1199), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 106), SHIFT_REPEAT(1155), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 106), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 67), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 92), SHIFT_REPEAT(1119), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 92), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 101), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 110), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 110), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 109), SHIFT_REPEAT(1555), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 110), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 109), SHIFT_REPEAT(1560), [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 109), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 107), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 52), SHIFT_REPEAT(1041), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 52), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 93), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 100), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(881), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 67), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 100), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 67), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1356), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 107), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1042), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 93), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 100), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(880), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 67), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 100), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 67), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1359), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(400), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 52), SHIFT_REPEAT(1063), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 52), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 52), SHIFT_REPEAT(1054), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 52), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 75), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(637), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1362), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1311), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(969), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(435), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(404), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1062), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), SHIFT_REPEAT(1057), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 102), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 75), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1365), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(991), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(484), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1316), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(641), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 102), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 57), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3712] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 73), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 57), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 73), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 58), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3716] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 73), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 58), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 73), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index af0f2de..ef81ddb 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -34,9 +34,10 @@ int main() { (compound_statement (expression_statement (number_literal))) - (compound_statement - (expression_statement - (number_literal))))))) + (else_clause + (compound_statement + (expression_statement + (number_literal)))))))) ================================================================================ For loops @@ -518,11 +519,12 @@ void f() { (attribute (identifier))) (compound_statement)) - (attributed_statement - (attribute_declaration - (attribute - (identifier))) - (compound_statement))) + (else_clause + (attributed_statement + (attribute_declaration + (attribute + (identifier))) + (compound_statement)))) (do_statement (attributed_statement (attribute_declaration